Login
User Name:

Password:



Register

Forgot your password?
do_advance
Jun 27, 2026 10:32 am
By Remcon
Time spamming LOP1.6
Jun 17, 2026 4:03 pm
By Remcon
A Bash Startup Script
Feb 7, 2026 3:49 pm
By eldhamud
Force Skills
Jan 1, 2026 3:58 pm
By Elwood
Overland with Bitmaps
Jul 4, 2025 11:57 pm
By Samson
SillyMUD 1.2a
Author: J. Brothers, J. Sievert, et al
Submitted by: Samson
SillyMUD 1.1b
Author: J. Brothers, J. Sievert, et al
Submitted 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
Users Online
Anthropic, Amazonbot

Members: 0
Guests: 34
Stats
Files
Topics
Posts
Members
Newest Member
512
3,813
19,727
593
TrinidadTr

» 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,991
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 >>