mirror of
https://github.com/tbamud/tbamud.git
synced 2025-12-23 18:50:13 +01:00
[Jan 24 2009] - Rumble
Fixed command queue cancelling "--" from cancelling the next command. (thanks Fren ze/Ogdin) Fixed object timer values from not saving. (thanks Stoneheart) Fixed latest GCC warnings in the /utils. (thanks Jamdog) Fixed violent area spells so they would not harm group members. (thanks Nhilar) Changed usage of qm->nr to GET_MOB_VNUM(qm). (thanks Tails)
This commit is contained in:
parent
b458c58878
commit
c9c7ed9e7a
11 changed files with 41 additions and 26 deletions
|
|
@ -237,7 +237,7 @@ int save_objects(zone_rnum zone_num)
|
|||
|
||||
fprintf(fp, "%d %s %s %s %s %s %s %s %s %s %s %s %s\n"
|
||||
"%d %d %d %d\n"
|
||||
"%d %d %d %d\n",
|
||||
"%d %d %d %d %d\n",
|
||||
|
||||
GET_OBJ_TYPE(obj),
|
||||
ebuf1, ebuf2, ebuf3, ebuf4,
|
||||
|
|
@ -246,7 +246,7 @@ int save_objects(zone_rnum zone_num)
|
|||
GET_OBJ_VAL(obj, 0), GET_OBJ_VAL(obj, 1),
|
||||
GET_OBJ_VAL(obj, 2), GET_OBJ_VAL(obj, 3),
|
||||
GET_OBJ_WEIGHT(obj), GET_OBJ_COST(obj),
|
||||
GET_OBJ_RENT(obj), GET_OBJ_LEVEL(obj)
|
||||
GET_OBJ_RENT(obj), GET_OBJ_LEVEL(obj), GET_OBJ_TIMER(obj)
|
||||
);
|
||||
|
||||
/* Do we have script(s) attached? */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue