mirror of
https://github.com/tbamud/tbamud.git
synced 2025-12-23 18:50:13 +01:00
[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:
parent
2f24e37bb8
commit
8315bc5da8
29 changed files with 191 additions and 1330 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue