mirror of
https://codeberg.org/tenplus1/mobs_redo.git
synced 2024-12-24 17:50:21 +01:00
change vars always resulting in true
This commit is contained in:
parent
609d52100c
commit
006f18c5c1
4
api.lua
4
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,
|
||||
|
Loading…
Reference in New Issue
Block a user