1 #include "../std.h"
2 #undef EXTRA_LONG
3 #define EXTRA_LONG\
4     if (id(str)) {\
5 	write("WARNING !!\n\n"+\
6 	    "The mines are closed due to risk of falling rock.\n");\
7 	return;\
8     }
9 
id(string str)10 int id(string str) {
11     return str == "sign" || str == "pole";
12 }
13 
14 TWO_EXIT("room/mount_pass", "south",
15 	 "room/mine/tunnel2", "north",
16 	 "Mine entrance",
17 	 "This is the entrance to the mines.\nThere is a sign on a pole.\n", 1)
18 
19