~sapidlib-dev/sapidlib/lockdown_d

« back to all changes in this revision

Viewing changes to lib/areas/lpuni/floor1/backr.c

  • Committer: Cody A.W. Somerville
  • Date: 2007-07-24 07:11:48 UTC
  • Revision ID: cody-somerville@veracity-20070724071148-ersezn01p9rw1jj8
Changed license to GPL, added conference room inheritabled, fixed bug in mobile, ...

 * Added license command to show license info
 * Added conference/meeting inhertiable
 * Added conference room in lpuni cafe area
 * Fixed indexing issue in prompt parsing by ensuring cwf is set

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
 
7
7
*/
8
8
 
 
9
#define FLOOR2 "/areas/lpuni/floor2/"
 
10
 
9
11
inherit ROOM;
10
12
 
11
13
void create()
27
29
    set_exits(([
28
30
      "west" : __DIR__ + "bathroom.c",
29
31
      "south" : __DIR__ + "cafe.c",
 
32
      "up" : FLOOR2 + "conference.c",
30
33
    ]) );
31
34
}
32
35