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, Google

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

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