home · contact · privacy
Replace hard-coded client login welcome messages with optional server login messages.
[plomrogue2] / plomrogue / commands.py
index 8376355fdfacdc4d46c5ad546b868c02feb0f6cc..ec31b12ff724774aabe11b9bb0c329f6c2a4b785 100644 (file)
@@ -463,3 +463,7 @@ def cmd_THING_SPAWNPOINT_CREATED(game, spawnpoint_id, timestamp):
         spawnpoint.temporary = True
         spawnpoint.created_at = datetime.datetime.fromtimestamp(timestamp)
 cmd_THING_SPAWNPOINT_CREATED.argtypes = 'int:pos int:nonneg'
+
+def cmd_INTRO_MSG(game, msg):
+    game.intro_messages += [msg]
+cmd_INTRO_MSG.argtypes = 'string'