added forgotten protection rune check (thanks to Adadov)

This commit is contained in:
TenPlus1 2017-09-03 09:15:15 +01:00
parent 59e3dcdaad
commit cdbc98dedd
1 changed files with 6 additions and 1 deletions

View File

@ -7,7 +7,7 @@ mobs:register_mob("mob_horse:horse", {
visual_size = {x = 1.20, y = 1.20},
mesh = "mobs_horse.x",
collisionbox = {-0.4, -0.01, -0.4, 0.4, 1.25, 0.4},
animation = {
animation = {
speed_normal = 15,
speed_run = 30,
stand_start = 25,
@ -92,6 +92,11 @@ mobs:register_mob("mob_horse:horse", {
return
end
-- applying protection rune
if mobs:protect(self, clicker) then
return
end
-- make sure tamed horse is being clicked by owner only
if self.tamed and self.owner == clicker:get_player_name() then