Login
User Name:

Password:



Register

Forgot your password?
SmaugFUSS 1.8/1.9
Aug 31, 2024 4:13 pm
By MADEiUM
Bug: char_check( )
Aug 31, 2024 12:27 am
By GatewaySysop
Bug: move_char( )
Aug 30, 2024 3:52 am
By GatewaySysop
Bug: spell_animate_dead
Aug 25, 2024 10:48 pm
By GatewaySysop
ROOM_NO_MAGIC Inconsistencies...
Jul 8, 2024 12:32 am
By GatewaySysop
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
Google, Bing

Members: 0
Guests: 18
Stats
Files
Topics
Posts
Members
Newest Member
489
3,802
19,680
614
DevinMims

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