Bugfix settingtypes: bool instead of boolean

This commit is contained in:
AliasAlreadyTaken 2022-03-31 14:45:33 +02:00
parent cd0c9c92d1
commit 9e0f1f29bc
2 changed files with 4 additions and 3 deletions

View File

@ -1,4 +1,4 @@
-- Version 1.0.1
-- Version 1.0.2
-- Author AliasAlreadyTaken
-- License MIT
@ -8,6 +8,7 @@
-- 0.0.2 Feature complete including settings
-- 1.0.0 Ready for release
-- 1.0.1 Bugfix https://gitea.your-land.de/your-land/bugtracker/issues/1646
-- 1.0.2 Bugfix settingtypes: bool instead of boolean
local mod_start_time = core.get_us_time()
core.log("action", "[MOD] yl_matterbridge loading")
@ -19,7 +20,7 @@ yl_matterbridge = {}
--yl_matterbridge.worldpath = core.get_worldpath() .. DIR_DELIM
yl_matterbridge.information = {}
yl_matterbridge.information.version = "1.0.1"
yl_matterbridge.information.version = "1.0.2"
yl_matterbridge.information.author = "AliasAlreadyTaken"
yl_matterbridge.information.license = "MIT"
yl_matterbridge.information.name = "yl_matterbridge"

View File

@ -26,4 +26,4 @@ yl_matterbridge.token (Bridge token) string ""
# Whether or not debugging messages are enabled
# If set to true, the mod will write every send and receive to the log, among other debug messages.
# Optional, default false
yl_matterbridge.debug (Debug mode) boolean false
yl_matterbridge.debug (Debug mode) bool false