/* vis.c
* Syll Mar'98
*/
#include <standard.h>
#include <cmd.h>
inherit CMD_BASE;
inherit "/cmds/handlers/wiz_cmd_base";
void setup(){
position = 1;
}
static int cmd(string str, object me) {
if (!me->query_invis()) {
notify_fail("You are already visible.\n");
return 0;
}
write("You become visible.\n");
say(me->query_cap_name()+" appears from nowhere.\n", me);
me->set_invis(0);
return 1;
} /* vis.c */