Skip to content
Snippets Groups Projects
Unverified Commit d88e5510 authored by Zughy's avatar Zughy Committed by GitHub
Browse files

Fix cart inventory image rendering (#2666)

Before it was rendering the side on both the side and the front of the minetest.inventorycube
parent 190f7fda
Branches
No related tags found
No related merge requests found
......@@ -389,7 +389,7 @@ minetest.register_entity("carts:cart", cart_entity)
minetest.register_craftitem("carts:cart", {
description = S("Cart") .. "\n" .. S("(Sneak+Click to pick up)"),
inventory_image = minetest.inventorycube("carts_cart_top.png", "carts_cart_side.png", "carts_cart_side.png"),
inventory_image = minetest.inventorycube("carts_cart_top.png", "carts_cart_front.png", "carts_cart_side.png"),
wield_image = "carts_cart_side.png",
on_place = function(itemstack, placer, pointed_thing)
local under = pointed_thing.under
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment