forked from mtcontrib/3d_armor
		
	Bugfix: recognise boolean false in configuration
This commit is contained in:
		@@ -44,7 +44,7 @@ for name, config in pairs(armor.config) do
 | 
			
		||||
	elseif type(config) == "boolean" then
 | 
			
		||||
		setting = minetest.setting_getbool("armor_"..name)
 | 
			
		||||
	end
 | 
			
		||||
	if setting then
 | 
			
		||||
	if setting ~= nil then
 | 
			
		||||
		armor.config[name] = setting
 | 
			
		||||
	end
 | 
			
		||||
end
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user