Update changelog and fix for Jenkins build #4

This commit is contained in:
TheYeti 2012-01-26 15:19:07 -08:00
parent 7e7505381b
commit 85fe839e91
2 changed files with 6 additions and 1 deletions

View File

@ -2,6 +2,11 @@ Changelog:
#Versions without changelogs probably had very small misc fixes, like tweaks to the source code
Version 1.2.08
- Changes in combat exp (Pull Request #49)
- Repair for bows & leather armor (Pull Request #46)
- Fixed missing images (Pull Request #45)
- POM Changes for dependencies (Pull Request #36)
- Fishing & Repair fixes (Pull Request #31)
- Fixed CraftOfflinePlayer issue (Issue #212) errors for offline wolf owners
- Pull in commit from @NuclearW for issue from previous commit

View File

@ -108,7 +108,7 @@ public class Combat
if(hpLeft < event.getDamage())
xpinc = hpLeft;
else
xpinc = event.getDamage;
xpinc = event.getDamage();
int xp = (int) (xpinc * 2 * LoadProperties.pvpxprewardmodifier);