X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=new2%2Fplomrogue%2Fcommands.py;h=4daf0ba5b8365cc19fd98efc6b208407fa2b48f6;hb=859f7be1bcd0313d0ed5dd5510968cbb18c9b343;hp=28b76006fe8088ffcc3d93bc64a455f71db8348b;hpb=f969bae68a328ca92c8a5efc3dd825d80df5d062;p=plomrogue2-experiments diff --git a/new2/plomrogue/commands.py b/new2/plomrogue/commands.py index 28b7600..4daf0ba 100644 --- a/new2/plomrogue/commands.py +++ b/new2/plomrogue/commands.py @@ -1,5 +1,6 @@ from plomrogue.misc import quote from plomrogue.errors import GameError +from plomrogue.mapping import YX @@ -19,6 +20,7 @@ def cmd_LOGIN(game, nick, connection_id): game.io.send('META ' + quote('you rename yourself to: ' + nick), connection_id) else: t = game.thing_types['player'](game) + t.position = YX(game.map.size.y // 2, game.map.size.x // 2) game.things += [t] # TODO refactor into Thing.__init__? game.sessions[connection_id] = t.id_ game.io.send('META ' + quote('you are now: ' + nick), connection_id)