mirror of
https://github.com/tbamud/tbamud.git
synced 2026-02-07 08:31:48 +01:00
Removed hometown and languages. --Rumble
This commit is contained in:
parent
bfa47111db
commit
2f24e37bb8
15 changed files with 24 additions and 42 deletions
|
|
@ -1529,7 +1529,7 @@ struct cmdlist_element *find_end(trig_data *trig, struct cmdlist_element *cl)
|
|||
return c;
|
||||
|
||||
/* thanks to Russell Ryan for this fix */
|
||||
if(!c->next) { //rryan: this is the last line, we didn't find an end
|
||||
if(!c->next) { /* rryan: this is the last line, we didn't find an end. */
|
||||
script_log("Trigger VNum %d has 'if' without 'end'. (error 2)", GET_TRIG_VNUM(trig));
|
||||
return c;
|
||||
}
|
||||
|
|
@ -1573,7 +1573,7 @@ struct cmdlist_element *find_else_end(trig_data *trig,
|
|||
return c;
|
||||
|
||||
/* thanks to Russell Ryan for this fix */
|
||||
if(!c->next) { //rryan: this is the last line, return
|
||||
if(!c->next) { /* rryan: this is the last line, return. */
|
||||
script_log("Trigger VNum %d has 'if' without 'end'. (error 4)", GET_TRIG_VNUM(trig));
|
||||
return c;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue