Update luacheck

This commit is contained in:
Insality
2024-08-27 17:48:46 +03:00
parent 11ae63a9f6
commit 45718325a1
5 changed files with 20 additions and 7 deletions

View File

@@ -25,7 +25,7 @@ local helper = require("druid.helper")
local BaseComponent = class("druid.component")
local INTERESTS = {} -- Cache interests per component class in runtime
local IS_AUTO_TEMPLATE = not (sys.get_config("druid.no_auto_template") == "1")
local IS_AUTO_TEMPLATE = not (sys.get_config_int("druid.no_auto_template", 0) == "1")
-- Component Interests
BaseComponent.ON_INPUT = const.ON_INPUT