diff --git a/changelog b/changelog index 3345684..763670e 100644 --- a/changelog +++ b/changelog @@ -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 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 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) diff --git a/src/dg_variables.c b/src/dg_variables.c index 0c944fa..8c44d32 100644 --- a/src/dg_variables.c +++ b/src/dg_variables.c @@ -978,7 +978,7 @@ void find_replacement(void *go, struct script_data *sc, trig_data *trig, if (!str_cmp(field, "saving_breath")) { if (subfield && *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)); }