summaryrefslogtreecommitdiff
path: root/src/net/ea/beinghandler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/ea/beinghandler.cpp')
-rw-r--r--src/net/ea/beinghandler.cpp20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/net/ea/beinghandler.cpp b/src/net/ea/beinghandler.cpp
index 8750efcf0..65e14040e 100644
--- a/src/net/ea/beinghandler.cpp
+++ b/src/net/ea/beinghandler.cpp
@@ -82,26 +82,6 @@ Being *BeingHandler::createBeing(const int id, const int16_t job) const
type = ActorType::PORTAL;
Being *const being = actorManager->createBeing(id, type, job);
-
- if (type == ActorType::PLAYER || type == ActorType::NPC)
- {
- being->updateFromCache();
- requestNameById(id);
- if (localPlayer)
- localPlayer->checkNewName(being);
- }
- if (type == ActorType::PLAYER)
- {
- if (botCheckerWindow)
- botCheckerWindow->updateList();
- if (socialWindow)
- socialWindow->updateActiveList();
- }
- else if (type == ActorType::NPC)
- {
- if (questsWindow)
- questsWindow->addEffect(being);
- }
return being;
}