diff options
Diffstat (limited to 'src/gui/popups/popupmenu.cpp')
-rw-r--r-- | src/gui/popups/popupmenu.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/popups/popupmenu.cpp b/src/gui/popups/popupmenu.cpp index 1c4722419..aa5a983fc 100644 --- a/src/gui/popups/popupmenu.cpp +++ b/src/gui/popups/popupmenu.cpp @@ -916,7 +916,7 @@ void PopupMenu::handleLink(const std::string &link, else if (link == "buy" && being && mBeingId != 0) { if (being->getType() == ActorType::Npc) - Net::getNpcHandler()->buy(mBeingId); + npcHandler->buy(mBeingId); else if (being->getType() == ActorType::Player) buySellHandler->requestSellList(being->getName()); } @@ -927,7 +927,7 @@ void PopupMenu::handleLink(const std::string &link, else if (link == "sell" && being && mBeingId != 0) { if (being->getType() == ActorType::Npc) - Net::getNpcHandler()->sell(mBeingId); + npcHandler->sell(mBeingId); else if (being->getType() == ActorType::Player) buySellHandler->requestBuyList(being->getName()); } |