diff options
author | TenPlus1 <kinsellaja@yahoo.com> | 2018-04-06 09:51:11 +0100 |
---|---|---|
committer | TenPlus1 <kinsellaja@yahoo.com> | 2018-04-06 09:51:11 +0100 |
commit | 0849727ee96cceb758e97870ece4a7be8e3a372a (patch) | |
tree | ca8f900903203352f39607daeab7b8151ed1df70 /api.lua | |
parent | 2f1ef11fa3e772ef3b556cc54d2d8f227551d0f5 (diff) |
knock_back defaults to true
Diffstat (limited to 'api.lua')
-rw-r--r-- | api.lua | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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, |