home · contact · privacy
Add wearable hats.
[plomrogue2] / plomrogue / commands.py
index 0ccbdc1cb50ef3b646474e1d165fe0a4444ea701..0228c69de5cede80930cb3104d8e14bf9df53073 100644 (file)
@@ -327,3 +327,7 @@ cmd_PLAYER_FACE.argtypes = 'string'
 def cmd_GOD_PLAYER_FACE(game, name, face):
     game.faces[name] = face
 cmd_GOD_PLAYER_FACE.argtypes = 'string string'
+
+def cmd_GOD_PLAYER_HAT(game, name, hat):
+    game.hats[name] = hat
+cmd_GOD_PLAYER_HAT.argtypes = 'string string'