Login
User Name:

Password:



Register

Forgot your password?
do_owhere recursive
Author: Khonsu
Submitted by: Khonsu
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
Users Online
Bing

Members: 0
Guests: 39
Stats
Files
Topics
Posts
Members
Newest Member
489
3,792
19,647
597
Aileenutz

Today's Birthdays
There are no member birthdays today.
» 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,685
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 >>