mirror of
https://github.com/tbamud/tbamud.git
synced 2025-12-20 09:10:13 +01:00
tbaMUD 3.54
[Oct 10 2007] - Rumble Added OLC menu options for Copying. The Xcopy option is still available for GODs and above. Player table is now created if it does not exist. (thanks Rhade) [Oct 08 2007] - Rumble Removed top_shop_offset variable, hopefully fixing the infamous sedit bug. Fixed memory leaks from not freeing new zone builders and new zone commands. (thanks Neme)
This commit is contained in:
parent
40b643b7d5
commit
0b3748b07a
38 changed files with 12904 additions and 12966 deletions
|
|
@ -123,7 +123,7 @@ obj_rnum adjust_objects(obj_rnum refpt)
|
|||
BOARD_RNUM(i) += (BOARD_RNUM(i) >= refpt);
|
||||
|
||||
/* Renumber shop produce. */
|
||||
for (shop = 0; shop <= top_shop - top_shop_offset; shop++)
|
||||
for (shop = 0; shop <= top_shop; shop++)
|
||||
for (i = 0; SHOP_PRODUCT(shop, i) != NOTHING; i++)
|
||||
SHOP_PRODUCT(shop, i) += (SHOP_PRODUCT(shop, i) >= refpt);
|
||||
|
||||
|
|
@ -440,7 +440,7 @@ int delete_object(obj_rnum rnum)
|
|||
BOARD_RNUM(j) -= (BOARD_RNUM(j) > rnum);
|
||||
|
||||
/* Renumber shop produce. */
|
||||
for (shop = 0; shop <= top_shop - top_shop_offset; shop++)
|
||||
for (shop = 0; shop <= top_shop; shop++)
|
||||
for (j = 0; SHOP_PRODUCT(shop, j) != NOTHING; j++)
|
||||
SHOP_PRODUCT(shop, j) -= (SHOP_PRODUCT(shop, j) > rnum);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue