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
AhrefsBot

Members: 0
Guests: 15
Stats
Files
Topics
Posts
Members
Newest Member
489
3,793
19,649
597
Aileenutz

Today's Birthdays
There are no member birthdays today.
» SmaugMuds » Bugfix Lists » AFKMud Bugfix List » AFKMud Bug Archive » [Bug] Backstab skill misuses ...
Forum Rules | Mark all | Recent Posts

[Bug] Backstab skill misuses short_descr field for players
< Newer Topic :: Older Topic > AFKMud 1.77

Pages:<< prev 1 next >>
Post is unread #1 Oct 30, 2006 8:35 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: Backstab skill misuses short_descr field for players
Danger: Low - Players don't have a short_descr field, so (null) shows up in its place.
Discovered in: AFKMud 1.77
Found by: Toadvile
Fixed by: Toadvile

---

skills.c, do_backstab

Locate:
   if( victim->hit < victim->max_hit )
   {
      ch_printf( ch, "%s is hurt and suspicious, you'll never get close enough.\n\r", victim->short_descr );
      return;
   }


Change to:
   if( victim->hit < victim->max_hit )
   {
      ch_printf( ch, "%s is hurt and suspicious, you'll never get close enough.\r\n",
         ( IS_NPC( victim ) ? victim->short_descr : victim->name ) );
      return;
   }


Not much explanation needed. Only NPCs have the short_descr field so referring to it on players is pointless.

Pages:<< prev 1 next >>