Character Browser Fix for Haste bug in 2.1
Reply
Fix for Haste bug in 2.1
Open:
include/statclass.php

Find:
php
More +
$this->myhaste = max($row['haste'],$itemhaste); //only save highest haste


Replace With:
php
More +
//$this->myhaste = max($row['haste'],$itemhaste); //only save highest haste
$this->myhaste = max($row['haste'],$this->myhaste); //only save highest haste
Tue May 18, 2010 4:30 pm
Project Lead
Character Browser Fix for Haste bug in 2.1
Reply