ответвлено от luanti-org/minetest_game
Fix TNT init for undefined enable_tnt setting
Этот коммит содержится в:
коммит произвёл
ShadowNinja
родитель
263b6f2fdf
Коммит
6967232619
@@ -2,8 +2,8 @@
|
||||
-- Default to enabled in singleplayer and disabled in multiplayer
|
||||
local singleplayer = minetest.is_singleplayer()
|
||||
local setting = minetest.setting_getbool("enable_tnt")
|
||||
if (not singleplayer and setting ~= false) or
|
||||
(singleplayer and setting ~= true) then
|
||||
if (not singleplayer and setting ~= true) or
|
||||
(singleplayer and setting == false) then
|
||||
return
|
||||
end
|
||||
|
||||
|
||||
Ссылка в новой задаче
Block a user