mirror of
https://github.com/minetest/minetest.git
synced 2024-11-27 01:53:45 +01:00
Fix wield image of plantlike_rooted (#11067)
This commit is contained in:
parent
3b78a22371
commit
6c9be39db0
@ -395,7 +395,6 @@ void WieldMeshSceneNode::setItem(const ItemStack &item, Client *client, bool che
|
|||||||
case NDT_TORCHLIKE:
|
case NDT_TORCHLIKE:
|
||||||
case NDT_RAILLIKE:
|
case NDT_RAILLIKE:
|
||||||
case NDT_PLANTLIKE:
|
case NDT_PLANTLIKE:
|
||||||
case NDT_PLANTLIKE_ROOTED:
|
|
||||||
case NDT_FLOWINGLIQUID: {
|
case NDT_FLOWINGLIQUID: {
|
||||||
v3f wscale = def.wield_scale;
|
v3f wscale = def.wield_scale;
|
||||||
if (f.drawtype == NDT_FLOWINGLIQUID)
|
if (f.drawtype == NDT_FLOWINGLIQUID)
|
||||||
@ -411,6 +410,15 @@ void WieldMeshSceneNode::setItem(const ItemStack &item, Client *client, bool che
|
|||||||
m_colors.emplace_back(l1.has_color, l1.color);
|
m_colors.emplace_back(l1.has_color, l1.color);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
case NDT_PLANTLIKE_ROOTED: {
|
||||||
|
setExtruded(tsrc->getTextureName(f.special_tiles[0].layers[0].texture_id),
|
||||||
|
"", def.wield_scale, tsrc,
|
||||||
|
f.special_tiles[0].layers[0].animation_frame_count);
|
||||||
|
// Add color
|
||||||
|
const TileLayer &l0 = f.special_tiles[0].layers[0];
|
||||||
|
m_colors.emplace_back(l0.has_color, l0.color);
|
||||||
|
break;
|
||||||
|
}
|
||||||
case NDT_NORMAL:
|
case NDT_NORMAL:
|
||||||
case NDT_ALLFACES:
|
case NDT_ALLFACES:
|
||||||
case NDT_LIQUID:
|
case NDT_LIQUID:
|
||||||
|
Loading…
Reference in New Issue
Block a user