From f8685e6941747833eb2c27b2d5d12e99da52fc69 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Tue, 21 Feb 2017 00:31:12 +0100 Subject: [PATCH] Don't give item after punching saddled horse --- mods/ENTITIES/mobs_mc/horse.lua | 1 - 1 file changed, 1 deletion(-) diff --git a/mods/ENTITIES/mobs_mc/horse.lua b/mods/ENTITIES/mobs_mc/horse.lua index beeef0a0..e5aeea3e 100644 --- a/mods/ENTITIES/mobs_mc/horse.lua +++ b/mods/ENTITIES/mobs_mc/horse.lua @@ -78,7 +78,6 @@ local horse = { on_punch = function(self, puncher, time_from_last_punch, tool_capabilities, direction) if puncher and puncher:is_player() then - puncher:get_inventory():add_item("main", self.name) self.object:remove() end end,