mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2025-06-25 10:14:43 +02:00
Fixed the instant refresh bug. Fixed blockListener checking skills.
This commit is contained in:
@ -8,4 +8,4 @@ GREEN_TERRA,
|
||||
SKULL_SPLIITER,
|
||||
TREE_FELLER,
|
||||
SERRATED_STRIKES;
|
||||
}
|
||||
}
|
@ -76,7 +76,7 @@ public class PlayerProfile
|
||||
public PlayerProfile(Player player)
|
||||
{
|
||||
hud = LoadProperties.defaulthud;
|
||||
//Setup the HashMap for ability ATS & DATS
|
||||
//Setup the HashMap for ability DATS
|
||||
for(AbilityType abilityType : AbilityType.values())
|
||||
{
|
||||
skillsDATS.put(abilityType, 0);
|
||||
@ -822,17 +822,15 @@ public class PlayerProfile
|
||||
{
|
||||
skills.put(skillType, 0);
|
||||
}
|
||||
public int getSkillDATS(AbilityType abilityType)
|
||||
public long getSkillDATS(AbilityType abilityType)
|
||||
{
|
||||
long convertedBack = skillsDATS.get(abilityType) * 1000;
|
||||
return skillsDATS.get(abilityType);
|
||||
}
|
||||
public void setSkillDATS(AbilityType abilityType, long value)
|
||||
{
|
||||
System.out.println("Storing to DATS: "+value);
|
||||
int wearsOff = (int) (value * .001D);
|
||||
System.out.println("After dividing by 1000: "+wearsOff);
|
||||
skillsDATS.put(abilityType, wearsOff);
|
||||
System.out.println("Should be the same as the above value: "+skillsDATS.get(abilityType));
|
||||
}
|
||||
public void resetCooldowns()
|
||||
{
|
||||
|
@ -297,8 +297,6 @@ public class mcBlockListener implements Listener
|
||||
PlayerProfile PP = Users.getProfile(player);
|
||||
ItemStack inhand = player.getItemInHand();
|
||||
Block block = event.getBlock();
|
||||
|
||||
Skills.monitorSkills(player, PP);
|
||||
|
||||
/*
|
||||
* ABILITY PREPARATION CHECKS
|
||||
|
@ -95,7 +95,7 @@ public class Skills
|
||||
PP.setSerratedStrikesInformed(true);
|
||||
player.sendMessage(mcLocale.getString("Skills.YourSerratedStrikes"));
|
||||
}
|
||||
if(!PP.getBerserkInformed() && curTime - (PP.getSkillDATS(AbilityType.BERSERK)*1000) >= (LoadProperties.berserkCooldown * 1000)){
|
||||
if(!PP.getBerserkInformed() && (curTime - (PP.getSkillDATS(AbilityType.BERSERK)*1000)) >= (LoadProperties.berserkCooldown * 1000)){
|
||||
PP.setBerserkInformed(true);
|
||||
player.sendMessage(mcLocale.getString("Skills.YourBerserk"));
|
||||
}
|
||||
@ -126,9 +126,7 @@ public class Skills
|
||||
PP.setHoePreparationMode(true);
|
||||
}
|
||||
}
|
||||
public static void monitorSkills(Player player, PlayerProfile PP) {
|
||||
monitorSkills(player, PP, System.currentTimeMillis());
|
||||
}
|
||||
|
||||
public static void monitorSkills(Player player, PlayerProfile PP, long curTime){
|
||||
if(PP.getHoePreparationMode() && curTime - (PP.getHoePreparationATS()*1000) >= 4000){
|
||||
PP.setHoePreparationMode(false);
|
||||
|
@ -38,9 +38,12 @@ public class Unarmed {
|
||||
{
|
||||
PP.setFistsPreparationMode(false);
|
||||
}
|
||||
|
||||
int ticks = 2;
|
||||
int x = PP.getSkillLevel(SkillType.UNARMED);
|
||||
while(x >= 50){
|
||||
|
||||
while(x >= 50)
|
||||
{
|
||||
x-=50;
|
||||
ticks++;
|
||||
}
|
||||
|
Reference in New Issue
Block a user