|
From: <gjh...@us...> - 2003-09-02 07:16:18
|
Update of /cvsroot/mistmud/mistmud
In directory sc8-pr-cvs1:/tmp/cvs-serv28456
Modified Files:
Tag: rev_1_3
spec_procs3.c
Log Message:
- reformat
- major cleanup in Psionist(), removed the stupid log() call that spammed crap
Index: spec_procs3.c
===================================================================
RCS file: /cvsroot/mistmud/mistmud/spec_procs3.c,v
retrieving revision 1.8.2.4
retrieving revision 1.8.2.5
diff -C2 -d -r1.8.2.4 -r1.8.2.5
*** spec_procs3.c 31 Aug 2003 05:49:40 -0000 1.8.2.4
--- spec_procs3.c 2 Sep 2003 07:16:09 -0000 1.8.2.5
***************
*** 4,10 ****
#include "protos.h"
! /* #include "mail.h" moved to protos.h */
! /* external vars */
extern struct room_data *world;
--- 4,14 ----
#include "protos.h"
[...16697 lines suppressed...]
! rp = real_roomp(ch->in_room);
! if (GetMinLevel(ch) >= 20) {
! char_from_room(ch);
! char_to_room(ch, rp->dir_option[3]->to_room);
! do_look(ch, "\0", 0);
! return (TRUE);
! } else {
! act("\n\r$N blocks your path and says \"come back when yer READY to" " practice here!\".\n\r", TRUE, ch, 0, mob, TO_CHAR);
! act("\n\r$N blocks $n's path into the training yards.\n\r",
! TRUE, ch, 0, mob, TO_ROOM);
! return (TRUE);
! }
}
! return (FALSE);
}
+ /*
+ * vim:ts=4:sw=4:ai:et:si:sts=4
+ */
|