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: 25
Stats
Files
Topics
Posts
Members
Newest Member
489
3,791
19,644
596
Elwood

Today's Birthdays
There are no member birthdays today.
» SmaugMuds » Bugfix Lists » SWFOTE FUSS Bugfix List » [Bug] Reset Messages not disp...
Forum Rules | Mark all | Recent Posts

[Bug] Reset Messages not displaying.
< Newer Topic :: Older Topic >

Pages:<< prev 1 next >>
Post is unread #1 Aug 28, 2009 12:45 pm   
Go to the top of the page
Go to the bottom of the page

InfiniteAxis
Off the Edge of the Map
GroupAdministrators
Posts1,200
JoinedMar 21, 2006

 
Bug: Reset Messages aren't displaying
Danger: Minor - Resets will fire, but there's no indication that it's happening.
Found by: Kayle
Fixed by: Remcon
---

handler.c, char_from_room
Find:
   if( ( obj = get_eq_char( ch, WEAR_LIGHT ) ) != NULL
       && obj->item_type == ITEM_LIGHT && obj->value[2] != 0 && ch->in_room->light > 0 )
      --ch->in_room->light;


Below that, add:
   if( ch->in_room->area )
      --ch->in_room->area->nplayer;


handler.c, char_to_room
Find:
   if( ( obj = get_eq_char( ch, WEAR_LIGHT ) ) != NULL && obj->item_type == ITEM_LIGHT && obj->value[2] != 0 )
      ++ch->in_room->light;


Above that, add:
   if( ch->in_room->area )
      if( ++ch->in_room->area->nplayer > ch->in_room->area->max_players )
         ch->in_room->area->max_players = ch->in_room->area->nplayer;


The areas all thought there was no one in them, because it wasn't adding/subtracting from the number of players in the area when players were being moved.

Pages:<< prev 1 next >>