blob: ca43efe5478c58557e34e5612ec7cae8b7cbad63 [file] [log] [blame]
MG Mud User88f12472016-06-24 23:31:02 +02001// MorgenGrauen MUDlib
2//
3// room/commands.c -- room commands handling
4//
5// $Id: commands.c 8201 2012-11-07 17:55:12Z Zesstra $
6
7#pragma strong_types
8#pragma save_types
MG Mud User88f12472016-06-24 23:31:02 +02009#pragma range_check
10#pragma no_clone
11
12inherit "/std/thing/commands";
13
14//#define NEED_PROTOTYPES
15
16#include <thing/properties.h>
17#include <config.h>
18#include <properties.h>
19#include <language.h>
20#include <defines.h>
21
Zesstra5b71ebb2018-03-07 20:50:35 +010022public varargs void init(object origin)
MG Mud User88f12472016-06-24 23:31:02 +020023{
Zesstra5b71ebb2018-03-07 20:50:35 +010024 ::init(origin);
MG Mud User88f12472016-06-24 23:31:02 +020025
26 add_action("imposs", "such");
27 add_action("imposs", "suche");
28}
29
30/* Fuer etwas bessere Fehlermeldungen als 'Wie bitte?' bei einigen */
31/* allgemeinen Kommandos. */
32int imposs()
33{
34 _notify_fail("Du suchst, findest aber nichts.\n");
35 return 0;
36}