mirror of
https://github.com/luanti-org/luanti.git
synced 2025-06-27 16:36:03 +00:00
Dont animate changing wielditem from hand to hand
This commit is contained in:
parent
c67f72890c
commit
e57dc4ef18
1 changed files with 2 additions and 1 deletions
|
@ -588,7 +588,8 @@ void Camera::wield(const ItemStack &item, u16 playeritem)
|
|||
IItemDefManager *idef = m_gamedef->idef();
|
||||
std::string itemname = item.getDefinition(idef).name;
|
||||
m_wield_mesh_next = idef->getWieldMesh(itemname, m_gamedef);
|
||||
if(playeritem != m_previous_playeritem) {
|
||||
if(playeritem != m_previous_playeritem &&
|
||||
!(m_previous_itemname == "" && itemname == "")) {
|
||||
m_previous_playeritem = playeritem;
|
||||
m_previous_itemname = itemname;
|
||||
if(m_wield_change_timer >= 0.125)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue