Login
User Name:

Password:



Register

Forgot your password?
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
AFKMud 2.5.1
Jan 17, 2025 2:22 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
Bytespider, Anthropic, AhrefsBot, Bing, Amazonbot, Google

Members: 0
Guests: 7
Stats
Files
Topics
Posts
Members
Newest Member
507
3,812
19,722
591
TracySpencer

» SmaugMuds » Bugfix Lists » LoP Bugfix List » Couple bugs
Forum Rules | Mark all | Recent Posts

Couple bugs
< Newer Topic :: Older Topic >

Pages:<< prev 1 next >>
Post is unread #1 Dec 12, 2017 7:42 pm   Last edited Dec 12, 2017 7:45 pm by Remcon
Go to the top of the page
Go to the bottom of the page

Remcon
Geomancer
GroupAdministrators
Posts1,992
JoinedJul 26, 2005

 
act_obj.c
------------------
function do_locate
around line 3143

find
      for( in_obj = obj; in_obj->in_obj; in_obj = in_obj->in_obj );


change that to
      for( in_obj = obj; in_obj->in_obj; in_obj = in_obj->in_obj )


function do_call
around line 3269

find
      for( in_obj = obj; in_obj->in_obj; in_obj = in_obj->in_obj );


change that to
      for( in_obj = obj; in_obj->in_obj; in_obj = in_obj->in_obj )


skills.c
-----------------
function check_duck
around line 4073

find
   if( !is_npc( victim ) && !victim->pcdata->learned[gsn_duck] > 0 )


change it to
   if( !is_npc( victim ) && victim->pcdata->learned[gsn_duck] <= 0 )


function check_block
around line 4095

find
   if( !is_npc( victim ) && !victim->pcdata->learned[gsn_block] > 0 )


change it to
   if( !is_npc( victim ) && victim->pcdata->learned[gsn_block] <= 0 )


function check_tumble
around line 4122

find
   if( !is_npc( victim ) && !victim->pcdata->learned[gsn_tumble] > 0 )


change it to
   if( !is_npc( victim ) && victim->pcdata->learned[gsn_tumble] <= 0 )

Pages:<< prev 1 next >>