Merge pull request #874 from EgzoT/EgzoT-useWith_fix

Fixed problem with function "useWith" on creatures
This commit is contained in:
Eduardo Bart
2017-11-04 11:13:11 -02:00
committed by GitHub

View File

@@ -856,6 +856,9 @@ void Game::useWith(const ItemPtr& item, const ThingPtr& toThing)
if(!pos.isValid()) // virtual item
pos = Position(0xFFFF, 0, 0); // means that is an item in inventory
if(toThing->isCreature())
m_protocolGame->sendUseOnCreature(pos, item->getId(), item->getStackPos(), toThing->getId());
else
m_protocolGame->sendUseItemWith(pos, item->getId(), item->getStackPos(), toThing->getPosition(), toThing->getId(), toThing->getStackPos());
}