diff --git a/teleport_arrow.lua b/teleport_arrow.lua index 792c442..7aeb059 100644 --- a/teleport_arrow.lua +++ b/teleport_arrow.lua @@ -53,7 +53,7 @@ THROWING_ARROW_ENTITY.on_step = function(self, dtime) self.object:remove() if self.player ~= "" then self.player:setpos(pos) - self.player:get_inventory():add_item("main", ItemStack("default:mese_crystal_fragment 2")) + self.player:get_inventory():add_item("main", ItemStack("default:stick 2")) end end end @@ -65,7 +65,7 @@ THROWING_ARROW_ENTITY.on_step = function(self, dtime) self.object:remove() if self.player ~= "" then self.player:setpos(self.lastpos) - self.player:get_inventory():add_item("main", ItemStack("default:mese_crystal_fragment 2")) + self.player:get_inventory():add_item("main", ItemStack("default:stick 2")) end end end @@ -77,8 +77,6 @@ minetest.register_entity("throwing:arrow_teleport_entity", THROWING_ARROW_ENTITY minetest.register_craft({ output = 'throwing:arrow_teleport', recipe = { - {'' , '' , 'default:mese_crystal_fragment'}, - {'default:stick', 'default:stick', 'default:mese_crystal_fragment'}, - {'' , '' , 'default:mese_crystal_fragment'} + {'default:stick', 'default:stick', 'default:mese_crystal_fragment'} } }) diff --git a/textures/throwing_arrow_teleport.png b/textures/throwing_arrow_teleport.png index 536bea2..235745a 100644 Binary files a/textures/throwing_arrow_teleport.png and b/textures/throwing_arrow_teleport.png differ diff --git a/textures/throwing_arrow_teleport_2.png b/textures/throwing_arrow_teleport_2.png index 85311d0..db786ca 100644 Binary files a/textures/throwing_arrow_teleport_2.png and b/textures/throwing_arrow_teleport_2.png differ diff --git a/textures/throwing_arrow_teleport_back.png b/textures/throwing_arrow_teleport_back.png index ec85fcb..325c203 100644 Binary files a/textures/throwing_arrow_teleport_back.png and b/textures/throwing_arrow_teleport_back.png differ diff --git a/textures/throwing_arrow_teleport_front.png b/textures/throwing_arrow_teleport_front.png index 4423c51..c2e693f 100644 Binary files a/textures/throwing_arrow_teleport_front.png and b/textures/throwing_arrow_teleport_front.png differ