mirror of
https://github.com/tbamud/tbamud.git
synced 2026-02-22 11:31:44 +01:00
[Jan 06 2008] - Rumble
Removed break in oedit_disp_val1_menu ITEM_NOTE that caused a delay. (thanks Rhade) Fixed tlist when specifying a range. (thanks Rhade)
This commit is contained in:
@@ -460,6 +460,10 @@ void list_triggers(struct char_data *ch, zone_rnum rnum, trig_vnum vmin, trig_vn
|
||||
}
|
||||
}
|
||||
|
||||
if (counter == 0)
|
||||
send_to_char(ch, "No triggers found for zone #%d\r\n", zone_table[rnum].number);
|
||||
if (counter == 0) {
|
||||
if (rnum == NOWHERE)
|
||||
send_to_char(ch, "No triggers found from %d to %d\r\n", vmin, vmax);
|
||||
else
|
||||
send_to_char(ch, "No triggers found for zone #%d\r\n", zone_table[rnum].number);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user