You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Technic has it's own settings system instead of using minetest's own setting system. This can be less than ideal for a few reasons:
When you update technic, all the settings are reset instead of being stored in the minetest.conf file.
Settings can't be changed in the minetest settings Gui on mobile platforms.
I would really like to move to mintest's settings system. If backwards comparability is desired, we can easily implement it something like this:
if minetest:settings("setting_name") then -- If the setting can't be retrieved or is at its default then this will return nil
technic_settings_table.setting_name = minetest:settings.get("setting_name")
else
-- Use default setting.
end
Other mods have had a similar system. I would really like to get started on this when I find the time but first I would like to get the community's thoughts.
The text was updated successfully, but these errors were encountered:
Technic has it's own settings system instead of using minetest's own setting system. This can be less than ideal for a few reasons:
I would really like to move to mintest's settings system. If backwards comparability is desired, we can easily implement it something like this:
Other mods have had a similar system. I would really like to get started on this when I find the time but first I would like to get the community's thoughts.
The text was updated successfully, but these errors were encountered: