Thread: svn bug..
View Single Post
Old 10-27-2006, 10:27 PM   #1 (permalink)
Kenko
Forum Expert
 
Kenko's Avatar
 
Join Date: Dec 2004
Location: Land of the Poor
Posts: 1,828
Send a message via MSN to Kenko
Default svn bug..

FIXED IN REVISION 104

ok I just dl'ed svn latest version (problem comes in revision 95)

Serado.cs ln 107:

before:
Code:
if ( attacker is BaseCreature && ((BaseCreature)attacker).BardProvoked )
after:
Code:
if ( this.Map == null && attacker is BaseCreature && ((BaseCreature)attacker).BardProvoked )
should be:
Code:
if ( this.Map == null || ( attacker is BaseCreature && ((BaseCreature)attacker).BardProvoked ) )
the bug will ignore both the map thing and the bardprovoked thing except if they both happen togheter..

Last edited by Kenko; 11-15-2006 at 08:30 PM.
Kenko is offline   Reply With Quote