diff options
| author | Franklin Wei <git@fwei.tk> | 2016-03-29 16:59:41 -0400 |
|---|---|---|
| committer | Franklin Wei <git@fwei.tk> | 2016-03-29 16:59:41 -0400 |
| commit | b3699dd5df18db3c060bb88a74c1b05e37154c76 (patch) | |
| tree | 0eac0fafafe313ed0bf99d5289d6541b0077b5b1 /worlds | |
| parent | 281bb06f483f571bdbb8e314a5bd951ed671e6d8 (diff) | |
| download | netcosm-b3699dd5df18db3c060bb88a74c1b05e37154c76.zip netcosm-b3699dd5df18db3c060bb88a74c1b05e37154c76.tar.gz netcosm-b3699dd5df18db3c060bb88a74c1b05e37154c76.tar.bz2 netcosm-b3699dd5df18db3c060bb88a74c1b05e37154c76.tar.xz | |
replace packet mode pipes with unix domain sockets
Diffstat (limited to 'worlds')
| -rw-r--r-- | worlds/test.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/worlds/test.c b/worlds/test.c index d4d5fb1..7425d81 100644 --- a/worlds/test.c +++ b/worlds/test.c @@ -464,6 +464,8 @@ static void put_exec(struct verb_t *verb, char *args, user_t *user) send_msg(user, "As you put the CPU board in the computer, it immediately springs to life. The lights start flashing, and the fans seem to startup.\n"); bool *b = room_get(user->room)->userdata; *b = true; + + room_get(user->room)->data.desc = strdup("You are in a computer room. It seems like most of the equipment has been removed. There is a VAX 11/780 in front of you, however, with one of the cabinets wide open. A sign on the front of the machine says: This VAX is named 'pokey'. To type on the console, use the 'type' command. The exit is to the east.\nThe panel lights are flashing in a seemingly organized pattern."); } else { |