mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-22 21:26:46 +01:00
Version 1.1.13
This commit is contained in:
parent
8596e10214
commit
a58d332ba1
@ -1,5 +1,8 @@
|
|||||||
Changelog:
|
Changelog:
|
||||||
#Versions without changelogs probably had very small misc fixes, like tweaks to the source code
|
#Versions without changelogs probably had very small misc fixes, like tweaks to the source code
|
||||||
|
Version 1.1.13
|
||||||
|
Pets are removed from party bars
|
||||||
|
|
||||||
Version 1.1.12
|
Version 1.1.12
|
||||||
mcMMO now downloads files when you join the server to provide the best experience
|
mcMMO now downloads files when you join the server to provide the best experience
|
||||||
mcMMO now uses a brand new Party HUD by Rycochet (from his mmoParty plugin)
|
mcMMO now uses a brand new Party HUD by Rycochet (from his mmoParty plugin)
|
||||||
@ -7,6 +10,7 @@ Fixed the xpbar and xpicon settings in config to work properly
|
|||||||
Fixed infinite HP exploit with Herbalism
|
Fixed infinite HP exploit with Herbalism
|
||||||
Fixed bug where herbalism would heal out of the players normal health range
|
Fixed bug where herbalism would heal out of the players normal health range
|
||||||
Fixed bug where entering ':' into your party name caused stat loss among other things
|
Fixed bug where entering ':' into your party name caused stat loss among other things
|
||||||
|
Fixed issue with block break listener priority
|
||||||
|
|
||||||
Version 1.1.11
|
Version 1.1.11
|
||||||
mcMMO now properly cancels its Async taks when disabled
|
mcMMO now properly cancels its Async taks when disabled
|
||||||
|
@ -42,8 +42,8 @@ public class Combat
|
|||||||
//Damage modifiers
|
//Damage modifiers
|
||||||
if(mcPermissions.getInstance().unarmed(attacker) && attacker.getItemInHand().getTypeId() == 0) //Unarmed
|
if(mcPermissions.getInstance().unarmed(attacker) && attacker.getItemInHand().getTypeId() == 0) //Unarmed
|
||||||
Unarmed.unarmedBonus(attacker, eventb);
|
Unarmed.unarmedBonus(attacker, eventb);
|
||||||
if(m.isAxes(attacker.getItemInHand()) && mcPermissions.getInstance().axes(attacker) && PPa.getSkillLevel(SkillType.AXES) >= 500)
|
if(m.isAxes(attacker.getItemInHand()) && mcPermissions.getInstance().axes(attacker) && Users.getProfile(attacker).getSkillLevel(SkillType.AXES) >= 500)
|
||||||
event.setDamage(event.getDamage()+4);
|
event.setDamage(event.getDamage()+4);
|
||||||
|
|
||||||
//If there are any abilities to activate
|
//If there are any abilities to activate
|
||||||
combatAbilityChecks(attacker, PPa, pluginx);
|
combatAbilityChecks(attacker, PPa, pluginx);
|
||||||
|
@ -97,8 +97,6 @@ public class mcBlockListener extends BlockListener
|
|||||||
|
|
||||||
public void onBlockBreak(BlockBreakEvent event)
|
public void onBlockBreak(BlockBreakEvent event)
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
||||||
Player player = event.getPlayer();
|
Player player = event.getPlayer();
|
||||||
PlayerProfile PP = Users.getProfile(player);
|
PlayerProfile PP = Users.getProfile(player);
|
||||||
Block block = event.getBlock();
|
Block block = event.getBlock();
|
||||||
|
@ -99,7 +99,7 @@ m.EffectsAxes1_0=Skull Splitter (ABILITY)
|
|||||||
m.EffectsAxes1_1=Deal AoE Damage
|
m.EffectsAxes1_1=Deal AoE Damage
|
||||||
m.EffectsAxes2_0=Critical Strikes
|
m.EffectsAxes2_0=Critical Strikes
|
||||||
m.EffectsAxes2_1=Double Damage
|
m.EffectsAxes2_1=Double Damage
|
||||||
m.EffectsAxes3_0=Axe Mastery (500 SKILL)
|
m.EffectsAxes3_0=Axe Mastery
|
||||||
m.EffectsAxes3_1=Modifies Damage
|
m.EffectsAxes3_1=Modifies Damage
|
||||||
m.AbilLockAxes1=LOCKED UNTIL 500+ SKILL (AXEMASTERY)
|
m.AbilLockAxes1=LOCKED UNTIL 500+ SKILL (AXEMASTERY)
|
||||||
m.AbilBonusAxes1_0=Axe Mastery
|
m.AbilBonusAxes1_0=Axe Mastery
|
||||||
|
@ -191,9 +191,9 @@ public class mmoHelper
|
|||||||
|
|
||||||
public static void update(Player player)
|
public static void update(Player player)
|
||||||
{
|
{
|
||||||
boolean show_pets = true;
|
//boolean show_pets = true;
|
||||||
Container container = containers.get(player);
|
Container container = containers.get(player);
|
||||||
|
|
||||||
if (container != null)
|
if (container != null)
|
||||||
{
|
{
|
||||||
int index = 0;
|
int index = 0;
|
||||||
@ -208,7 +208,7 @@ public class mmoHelper
|
|||||||
bar = (GenericLivingEntity)bars[index];
|
bar = (GenericLivingEntity)bars[index];
|
||||||
}
|
}
|
||||||
bar.setEntity(name, Party.getInstance().isPartyLeader(Bukkit.getServer().getPlayer(name), Users.getProfile(Bukkit.getServer().getPlayer(name)).getParty()) ? ChatColor.GREEN + "@" : "");
|
bar.setEntity(name, Party.getInstance().isPartyLeader(Bukkit.getServer().getPlayer(name), Users.getProfile(Bukkit.getServer().getPlayer(name)).getParty()) ? ChatColor.GREEN + "@" : "");
|
||||||
bar.setTargets(show_pets ? getPets(Bukkit.getServer().getPlayer(name)) : null);
|
//bar.setTargets(show_pets ? getPets(Bukkit.getServer().getPlayer(name)) : null);
|
||||||
index++;
|
index++;
|
||||||
}
|
}
|
||||||
while (index < bars.length) {
|
while (index < bars.length) {
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
name: mcMMO
|
name: mcMMO
|
||||||
main: com.gmail.nossr50.mcMMO
|
main: com.gmail.nossr50.mcMMO
|
||||||
version: 1.1.12
|
version: 1.1.13
|
||||||
softdepend: [Spout]
|
softdepend: [Spout]
|
||||||
commands:
|
commands:
|
||||||
mchud:
|
mchud:
|
||||||
|
Loading…
Reference in New Issue
Block a user