mirror of
https://codeberg.org/tenplus1/mobs_redo.git
synced 2024-12-23 17:20:22 +01:00
knock_back defaults to true
This commit is contained in:
parent
2f1ef11fa3
commit
0849727ee9
2
api.lua
2
api.lua
@ -2875,7 +2875,7 @@ minetest.register_entity(name, {
|
||||
attacks_monsters = def.attacks_monsters or false,
|
||||
group_attack = def.group_attack or false,
|
||||
passive = def.passive or false,
|
||||
knock_back = def.knock_back or 3,
|
||||
knock_back = def.knock_back ~= false,
|
||||
blood_amount = def.blood_amount or 5,
|
||||
blood_texture = def.blood_texture or "mobs_blood.png",
|
||||
shoot_offset = def.shoot_offset or 0,
|
||||
|
Loading…
Reference in New Issue
Block a user