[May 17 2007] - Rumble

Added AFF_FLYING/SCUBA and appropriate checks in act.movement.c. Room sector ty
  pes IN FLIGHT and UNDERWATER are finally being used!
  Removed all of the Dragon_Breathes.
  Removed context help system.
  Added invis level on reconnect.
[May 15 2007] - Rumble
  Fixed object stacking to match s-desc and item_number.
  Added wizupdate command.
  Added valid_dg_target check to object remove trigs.
This commit is contained in:
Rumble 2007-05-17 20:51:06 +00:00
parent 2f24e37bb8
commit 8315bc5da8
29 changed files with 191 additions and 1330 deletions

View file

@ -2093,7 +2093,7 @@ ACMD(do_vdelete)
if (!*buf || !*buf2) {
send_to_char(ch, "Usage: vdelete { <variablename> | * } <id>\r\n");
send_to_char(ch, "Usage: vdelete { <variablename> | * | all } <id>\r\n");
return;
}
@ -2126,7 +2126,7 @@ ACMD(do_vdelete)
return;
}
if (*var == '*') {
if (*var == '*' || is_abbrev(var, "all")) {
struct trig_var_data *vd_next;
for (vd = sc_remote->global_vars; vd; vd = vd_next) {
vd_next = vd->next;