summaryrefslogtreecommitdiff
path: root/src/net
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-09-19 22:20:31 +0300
committerAndrei Karas <akaras@inbox.ru>2014-09-19 22:20:31 +0300
commit9260ff92edf7f77e254ccdc71c4082005f66d852 (patch)
treed1c6640483d59d944a8ada1260b0cf2735f7f0dd /src/net
parentdbc90e69531c5ae8fddfcfbd6adeaca0ad144f34 (diff)
downloadplus-9260ff92edf7f77e254ccdc71c4082005f66d852.tar.gz
plus-9260ff92edf7f77e254ccdc71c4082005f66d852.tar.bz2
plus-9260ff92edf7f77e254ccdc71c4082005f66d852.tar.xz
plus-9260ff92edf7f77e254ccdc71c4082005f66d852.zip
eathena: not hide any beings.
Diffstat (limited to 'src/net')
-rw-r--r--src/net/eathena/beinghandler.cpp15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/net/eathena/beinghandler.cpp b/src/net/eathena/beinghandler.cpp
index a4e934af2..1d341e520 100644
--- a/src/net/eathena/beinghandler.cpp
+++ b/src/net/eathena/beinghandler.cpp
@@ -916,11 +916,6 @@ void BeingHandler::processBeingVisible(Net::MessageIn &msg)
if (!dstBeing)
{
- // Being with id >= 110000000 and job 0 are better
- // known as ghosts, so don't create those.
- if (job == 0 && id >= 110000000)
- return;
-
if (actorManager->isBlocked(id) == true)
return;
@@ -1091,11 +1086,6 @@ void BeingHandler::processBeingMove(Net::MessageIn &msg)
if (!dstBeing)
{
- // Being with id >= 110000000 and job 0 are better
- // known as ghosts, so don't create those.
- if (job == 0 && id >= 110000000)
- return;
-
if (actorManager->isBlocked(id) == true)
return;
@@ -1262,11 +1252,6 @@ void BeingHandler::processBeingSpawn(Net::MessageIn &msg)
if (!dstBeing)
{
- // Being with id >= 110000000 and job 0 are better
- // known as ghosts, so don't create those.
- if (job == 0 && id >= 110000000)
- return;
-
if (actorManager->isBlocked(id) == true)
return;