#4 im going to commit murder

This commit is contained in:
FatalErr42O 2024-03-27 19:59:02 -07:00
parent d1709f59e9
commit 0a89d03420
2 changed files with 2 additions and 1 deletions

View File

@ -0,0 +1 @@
empty_symbol = "AHHH"

View File

@ -32,7 +32,7 @@ for i, v in pairs(Guns4d.config) do
--Guns4d.config[i] = conf[i] or minetest.settings["guns4d."..i] or Guns4d.config[i]
--cant use or because it'd evaluate to false if the setting is alse
if mt_conf[i] ~= nil then
Guns4d.config[i] = mt_conf[i]
Guns4d.config[i] = mt_conf["guns4d."..i]
elseif conf[i] ~= nil then
Guns4d.config[i] = conf[i]
end