mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-22 21:26:46 +01:00
Fixed bug where the wrong flag was being set when taking damage.
This commit is contained in:
parent
2feba8f64c
commit
0d2b87834c
@ -13,6 +13,7 @@ Version 1.4.01-dev
|
|||||||
= Fixed bug where Smelting would throw consistent errors due to offline players
|
= Fixed bug where Smelting would throw consistent errors due to offline players
|
||||||
= Fixed bug where repairing an mcMMO ability-buffed item with mcMMO repair could take the enchant but leave the lore tag
|
= Fixed bug where repairing an mcMMO ability-buffed item with mcMMO repair could take the enchant but leave the lore tag
|
||||||
= Fixed bug where using '/party chat message...' would result in the first word of the message being printed repeatedly
|
= Fixed bug where using '/party chat message...' would result in the first word of the message being printed repeatedly
|
||||||
|
= Fixed bug where the wrong flag was being set when taking damage
|
||||||
|
|
||||||
Version 1.4.00
|
Version 1.4.00
|
||||||
+ Added new Child Skill - Smelting!
|
+ Added new Child Skill - Smelting!
|
||||||
|
@ -915,7 +915,7 @@ public class PlayerProfile {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public void actualizeRecentlyHurt() {
|
public void actualizeRecentlyHurt() {
|
||||||
respawnATS = (int) (System.currentTimeMillis() / Misc.TIME_CONVERSION_FACTOR);
|
recentlyHurt = (int) (System.currentTimeMillis() / Misc.TIME_CONVERSION_FACTOR);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Loading…
Reference in New Issue
Block a user