Fixed so the look command is called immediately when connecting also on MULTISESSION_MODE=3

This commit is contained in:
Griatch 2014-08-07 17:45:16 +02:00
parent 40e9a149d6
commit e7d562d2e8

View file

@ -371,7 +371,7 @@ class Player(TypeClass):
# not perform any actions # not perform any actions
if not self.get_all_puppets(): if not self.get_all_puppets():
self.execute_cmd("@ic", sessid=sessid) self.execute_cmd("@ic", sessid=sessid)
elif _MULTISESSION_MODE == 2: elif _MULTISESSION_MODE in (2, 3):
# In this mode we by default end up at a character selection # In this mode we by default end up at a character selection
# screen. We execute look on the player. # screen. We execute look on the player.
self.execute_cmd("look", sessid=sessid) self.execute_cmd("look", sessid=sessid)