Fix deprecated setting call

This commit is contained in:
EdwardThorsten 2017-10-02 09:11:51 +01:00 committed by rubenwardy
parent 3854565fa2
commit 81590b5773
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ if minetest.get_modpath("fire") then
target = 8
}
})
if minetest.setting_getbool("disable_fire") ~= true then
if minetest.settings:get_bool("disable_fire") ~= true then
awards.register_achievement("awards_firefighter", {
title = S("Firefighter"),
description = S("Put out 1000 fires."),