home · contact · privacy
Minor code style improvements.
[plomrogue2-experiments] / new / plomrogue / commands.py
index 280b73603e7b5f14e3dbe4424b4c33f567ecf211..ad53438b75974759b19a4bb29394a60b581b2e84 100644 (file)
@@ -60,10 +60,9 @@ def cmd_TURN(game, n):
 cmd_TURN.argtypes = 'int:nonneg'
 
 def cmd_SWITCH_PLAYER(game):
-    player = game.world.get_player()
-    player.set_task('WAIT')
+    game.world.player.set_task('WAIT')
     thing_ids = [t.id_ for t in game.world.things]
-    player_index = thing_ids.index(player.id_)
+    player_index = thing_ids.index(game.world.player.id_)
     if player_index == len(thing_ids) - 1:
         game.world.player_id = thing_ids[0]
     else:
@@ -85,9 +84,8 @@ def cmd_SAVE(game):
             write(f, 'THING_TYPE %s %s' % (thing.id_, thing.type_))
             write(f, 'THING_POS %s %s' % (thing.id_,
                                           stringify_yx(thing.position)))
-            write(f, 'THING_INVENTORY %s %s' % (thing.id_,
-                                                ','.join([str(i) for i in
-                                                          thing.inventory])))
+            write(f, 'THING_INVENTORY %s %s' %
+                  (thing.id_,','.join([str(i) for i in thing.inventory])))
             if hasattr(thing, 'task'):
                 task = thing.task
                 if task is not None: