1
0
mirror of https://github.com/mcMMO-Dev/mcMMO.git synced 2025-04-01 09:16:24 +02:00

Update changelog and fix for Jenkins build

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
Changelog.txt
src/main/java/com/gmail/nossr50

@ -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

@ -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);