summaryrefslogtreecommitdiff
path: root/api.lua
diff options
context:
space:
mode:
Diffstat (limited to 'api.lua')
-rw-r--r--api.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/api.lua b/api.lua
index 529228a..c8b5479 100644
--- a/api.lua
+++ b/api.lua
@@ -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,