Login
User Name:

Password:



Register

Forgot your password?
Changes list / Addchange
Author: Khonsu
Submitted by: Khonsu
6Dragons mp3 sound pack
Author: Vladaar
Submitted by: Vladaar
AFKMud 2.2.3
Author: AFKMud Team
Submitted by: Samson
SWFOTEFUSS 1.5
Author: Various
Submitted by: Samson
SWRFUSS 1.4
Author: Various
Submitted by: Samson
Users Online
Majestic-12, AhrefsBot, Google, Bing

Members: 0
Guests: 29
Stats
Files
Topics
Posts
Members
Newest Member
488
3,788
19,631
595
Khonsu

Today's Birthdays
There are no member birthdays today.
» SmaugMuds » Bugfix Lists » AFKMud Bugfix List » [Bug] E resets produced by in...
Forum Rules | Mark all | Recent Posts

[Bug] E resets produced by instaroom have invalid format
< Newer Topic :: Older Topic > AFKMud 2.01

Pages:<< prev 1 next >>
Post is unread #1 Oct 14, 2007 12:10 pm   
Go to the top of the page
Go to the bottom of the page

Samson
Black Hand
GroupAdministrators
Posts3,685
JoinedJan 1, 2002

 
Bug: E resets produced by instaroom have invalid format
Danger: Medium - Leads to minor reset corruption when using the automated tools
Discovered in: AFKMud 2.01
Found by: Dialan
Fixed by: Samson

---

reset.cpp, add_obj_reset

Locate:
else
      room->add_reset( cm, ( cm == 'P' ? iNest : 0 ), obj->pIndexData->vnum, v2, v3, 100, 100, 100, 100, -2, -2, -2 );


Change to:
   else if( cm == 'P' )
      room->add_reset( cm, iNest, obj->pIndexData->vnum, v2, v3, 100, 100, 100, 100, -2, -2, -2 );
    else
      room->add_reset( cm, obj->pIndexData->vnum, v2, v3, 100, 100, 100, 100, -2, -2, -2, -2 );


A subtle yet noticeable problem when using the automated instaroom or instazone commands to populate resets. Equip resets were still setting up the nesting value of 0 even though the rest of the code had been altered so that this first value was no longer needed. This error crept in during the conversion to the KEY'd area file formats.

Pages:<< prev 1 next >>