change vars always resulting in true

This commit is contained in:
TenPlus1 2018-03-12 11:42:35 +00:00
parent 609d52100c
commit 006f18c5c1
1 changed files with 2 additions and 2 deletions

View File

@ -2910,8 +2910,8 @@ minetest.register_entity(name, {
explosion_radius = def.explosion_radius,
explosion_damage_radius = def.explosion_damage_radius,
explosion_timer = def.explosion_timer or 3,
allow_fuse_reset = def.allow_fuse_reset or true,
stop_to_explode = def.stop_to_explode or true,
allow_fuse_reset = def.allow_fuse_reset ~= false,
stop_to_explode = def.stop_to_explode ~= false,
custom_attack = def.custom_attack,
double_melee_attack = def.double_melee_attack,
dogshoot_switch = def.dogshoot_switch,