Login
User Name:

Password:



Register

Forgot your password?
 time_update
Jan 12, 2025 9:53 pm
By Remcon
pwd memory leak
Jan 11, 2025 6:31 pm
By Samson
AFKMud 2.2.5
Jan 8, 2025 5:04 pm
By Samson
sting skill
Jan 8, 2025 2:40 pm
By Samson
south command
Jan 7, 2025 7:22 pm
By Remcon
SWFotEFUSS 1.5.2
Author: Various
Submitted by: Samson
SWRFUSS 1.4.2
Author: Various
Submitted by: Samson
SmaugFUSS 1.9.6
Author: Various
Submitted by: Samson
AFKMud 2.2.5
Author: AFKMud Team
Submitted by: Samson
Help.are for SmaugFUSS1.9.5
Author: Smaug
Submitted by: Remcon
Users Online
Anthropic, DotBot, Bytespider, Google, Bing, Yandex, Remcon

Members: 1
Guests: 12
Stats
Files
Topics
Posts
Members
Newest Member
499
3,822
19,770
588
Mortrex

» SmaugMuds » Bugfix Lists » AFKMud Bugfix List » [Bug] Aninmate dead spell che...
Forum Rules | Mark all | Recent Posts

[Bug] Aninmate dead spell checks dragon corpses improperly
< Newer Topic :: Older Topic > AFKMud 2.03

Pages:<< prev 1 next >>
Post is unread #1 Feb 16, 2008 11:32 pm   
Go to the top of the page
Go to the bottom of the page

Samson
Black Hand
GroupAdministrators
Posts3,719
JoinedJan 1, 2002

 
Bug: Aninmate dead spell checks dragon corpses improperly
Danger: Medium - May not catch someone trying to animate a dracolich out of a non-dragon corpse.
Discovered in: AFKMud 2.03
Found by: Samson
Fixed by: Samson

---

magic.cpp, spell_animate_dead

Locate:
      /*
       * Bugfix by Tarl so only dragons become dracoliches. 29 July 2002
       */
      if( corpse_name == "dracolich" )


Change to:
      /*
       * Bugfix by Tarl so only dragons become dracoliches. 29 July 2002
       */
      if( !str_cmp( corpse_name, "dracolich" ) )


Since corpse_name is not a std::string it can't be compared using the == operator and must instead be checked by str_cmp or the results will most likely not be useful for verifying that a dracolich can only be animated from a dead dragon.

Pages:<< prev 1 next >>