Login
User Name:

Password:



Register

Forgot your password?
Overland with Bitmaps
Jul 4, 2025 11:57 pm
By Samson
void nanny_get_new_race -- comm.c
Mar 13, 2025 7:08 am
By Elwood
IPv6
Jan 25, 2025 10:45 pm
By Samson
mudstrlcpy and mudstrlcat
Jan 18, 2025 5:23 pm
By Samson
I3 and IMC
Jan 17, 2025 9:35 pm
By Samson
SWFotEFUSS 1.5.3
Author: Various
Submitted by: Samson
SWRFUSS 1.4.3
Author: Various
Submitted by: Samson
SmaugFUSS 1.9.8
Author: Various
Submitted by: Samson
AFKMud 2.5.2
Author: AFKMud Team
Submitted by: Samson
SmaugFUSS 1.9.7
Author: Various
Submitted by: Samson
Users Online
Anthropic, Majestic-12, DotBot

Members: 0
Guests: 9
Stats
Files
Topics
Posts
Members
Newest Member
507
3,812
19,727
601
PedroJooLu

» SmaugMuds » Bugfix Lists » AFKMud Bugfix List » AFKMud Bug Archive » [Bug] Switched players always...
Forum Rules | Mark all | Recent Posts

[Bug] Switched players always show [help start]
< Newer Topic :: Older Topic > AFKMud 1.77

Pages:<< prev 1 next >>
Post is unread #1 Nov 5, 2006 1:42 pm   
Go to the top of the page
Go to the bottom of the page

Samson
Black Hand
GroupAdministrators
Posts3,708
JoinedJan 1, 2002

 
Bug: Switched players always show [help start]
Danger: Trivial - Minor display glitch
Discovered in: AFKMud 1.77
Found by: Kazro
Fixed by: Toadvile

---

comm.c, display_prompt

Locate:
   if( !IS_PCFLAG( ch, PCFLAG_HELPSTART ) )
      prompt = helpstart;


Change to:
   if( !IS_NPC(ch) && !IS_PCFLAG( ch, PCFLAG_HELPSTART ) )
      prompt = helpstart;


This is a side affect of not paying attention to the logic of the IS_PCFLAG macro and forgetting that you will often still need to pair it with an IS_NPC check even though it has one in the macro. Could be an indication the macro is flawed and needs to be fixed. But for now this check solves the minor problem.

Pages:<< prev 1 next >>