Fixed a typo in dg_variables
This commit is contained in:
@@ -2,6 +2,8 @@ TbaMUD is currently being developed by The Builder Academy. If you need any
|
|||||||
help, find any bugs, or have ideas for improvement please stop by TBA at
|
help, find any bugs, or have ideas for improvement please stop by TBA at
|
||||||
telnet://tbamud.com:9091 or email rumble@tbamud.com --Rumble
|
telnet://tbamud.com:9091 or email rumble@tbamud.com --Rumble
|
||||||
@
|
@
|
||||||
|
[Aug 12 2012] - Vatiken
|
||||||
|
bug: fixed typo in dg_variables.c (Thanks Zusuk)
|
||||||
[Aug 08 2012] - Vatiken
|
[Aug 08 2012] - Vatiken
|
||||||
bug: fixed another copyover issue that resulted in dying character respawning at corpse.
|
bug: fixed another copyover issue that resulted in dying character respawning at corpse.
|
||||||
bug: fixed an issue where a PC could be remembered after dying. (Thanks Zusuk)
|
bug: fixed an issue where a PC could be remembered after dying. (Thanks Zusuk)
|
||||||
|
|||||||
@@ -978,7 +978,7 @@ void find_replacement(void *go, struct script_data *sc, trig_data *trig,
|
|||||||
if (!str_cmp(field, "saving_breath")) {
|
if (!str_cmp(field, "saving_breath")) {
|
||||||
if (subfield && *subfield) {
|
if (subfield && *subfield) {
|
||||||
int addition = atoi(subfield);
|
int addition = atoi(subfield);
|
||||||
GET_SAVE(c, SAVING_SPELL) += addition;
|
GET_SAVE(c, SAVING_BREATH) += addition;
|
||||||
}
|
}
|
||||||
snprintf(str, slen, "%d", GET_SAVE(c, SAVING_BREATH));
|
snprintf(str, slen, "%d", GET_SAVE(c, SAVING_BREATH));
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user