mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-22 13:16:45 +01:00
Add setting to turn off knock on wood XP orb drops for Tree Feller
This commit is contained in:
parent
c44e280773
commit
ac57615383
@ -2,6 +2,9 @@ Version 2.1.172
|
|||||||
Updated german locale (thanks TheBusyBiscuit)
|
Updated german locale (thanks TheBusyBiscuit)
|
||||||
Changed Fists to not be capitalized (en_US) when lowering/readying berserk
|
Changed Fists to not be capitalized (en_US) when lowering/readying berserk
|
||||||
SkillActivationPerkEvent can now be called in async threads (thanks electronicboy)
|
SkillActivationPerkEvent can now be called in async threads (thanks electronicboy)
|
||||||
|
You can now disable the XP orbs from being dropped when Knock On Wood triggers during Tree Feller
|
||||||
|
Added 'Skills.Woodcutting.TreeFeller.Knock_On_Wood.Add_XP_Orbs_To_Drops' to advanced.yml
|
||||||
|
Removed a few never implemented settings from Skills.Woodcutting.TreeFeller in advanced.yml
|
||||||
|
|
||||||
Version 2.1.171
|
Version 2.1.171
|
||||||
Fixed a bug where arrows shot by infinite bow enchant would duplicate
|
Fixed a bug where arrows shot by infinite bow enchant would duplicate
|
||||||
|
@ -451,23 +451,6 @@ public class AdvancedConfig extends AutoUpdateConfigLoader {
|
|||||||
reason.add("Skills.Woodcutting.HarvestLumber.MaxBonusLevel should be at least 1!");
|
reason.add("Skills.Woodcutting.HarvestLumber.MaxBonusLevel should be at least 1!");
|
||||||
}
|
}
|
||||||
|
|
||||||
/* KRAKEN */
|
|
||||||
if (getKrakenTriesBeforeRelease() < 1) {
|
|
||||||
reason.add("Kraken.Tries_Before_Release should be at least 1!");
|
|
||||||
}
|
|
||||||
|
|
||||||
if (getKrakenHealth() < 1) {
|
|
||||||
reason.add("Kraken.Health should be at least 1!");
|
|
||||||
}
|
|
||||||
|
|
||||||
if (getKrakenAttackInterval() < 1) {
|
|
||||||
reason.add("Kraken.Attack_Interval_Seconds should be at least 1!");
|
|
||||||
}
|
|
||||||
|
|
||||||
if (getKrakenAttackDamage() < 1) {
|
|
||||||
reason.add("Kraken.Attack_Damage should be at least 1!");
|
|
||||||
}
|
|
||||||
|
|
||||||
return noErrorsInConfig(reason);
|
return noErrorsInConfig(reason);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -835,19 +818,5 @@ public class AdvancedConfig extends AutoUpdateConfigLoader {
|
|||||||
public boolean getDisarmProtected() { return config.getBoolean("Skills.Unarmed.Disarm.AntiTheft", false); }
|
public boolean getDisarmProtected() { return config.getBoolean("Skills.Unarmed.Disarm.AntiTheft", false); }
|
||||||
|
|
||||||
/* WOODCUTTING */
|
/* WOODCUTTING */
|
||||||
/*public int getLeafBlowUnlockLevel() { return config.getInt("Skills.Woodcutting.LeafBlower.UnlockLevel", 100); }*/
|
public boolean isKnockOnWoodXPOrbEnabled() { return config.getBoolean("Skills.Woodcutting.TreeFeller.Knock_On_Wood.Add_XP_Orbs_To_Drops", true); }
|
||||||
|
|
||||||
/* KRAKEN STUFF */
|
|
||||||
public boolean getKrakenEnabled() { return config.getBoolean("Kraken.Enabled", true); }
|
|
||||||
public int getKrakenTriesBeforeRelease() { return config.getInt("Kraken.Tries_Before_Release", 50); }
|
|
||||||
public double getKrakenHealth() { return config.getDouble("Kraken.Health", 50.0D); }
|
|
||||||
public String getKrakenName() { return config.getString("Kraken.Name", "The Kraken"); }
|
|
||||||
public int getKrakenAttackInterval() { return config.getInt("Kraken.Attack_Interval_Seconds", 1); }
|
|
||||||
public double getKrakenAttackDamage() { return config.getDouble("Kraken.Attack_Damage", 1.0D); }
|
|
||||||
public boolean getKrakenGlobalEffectsEnabled() { return config.getBoolean("Kraken.Global_Effects", false); }
|
|
||||||
public boolean getKrakenEscapeAllowed() { return config.getBoolean("Kraken.Allow_Escaping", false); }
|
|
||||||
public String getServerUnleashMessage() { return config.getString("Kraken.Unleashed_Message.Server", ""); }
|
|
||||||
public String getPlayerUnleashMessage() { return config.getString("Kraken.Unleashed_Message.Player", ""); }
|
|
||||||
public String getPlayerDefeatMessage() { return config.getString("Kraken.Defeated_Message.Killed", ""); }
|
|
||||||
public String getPlayerEscapeMessage() { return config.getString("Kraken.Defeated_Message.Escape", ""); }
|
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
package com.gmail.nossr50.skills.woodcutting;
|
package com.gmail.nossr50.skills.woodcutting;
|
||||||
|
|
||||||
import com.gmail.nossr50.api.ItemSpawnReason;
|
import com.gmail.nossr50.api.ItemSpawnReason;
|
||||||
|
import com.gmail.nossr50.config.AdvancedConfig;
|
||||||
import com.gmail.nossr50.config.Config;
|
import com.gmail.nossr50.config.Config;
|
||||||
import com.gmail.nossr50.config.experience.ExperienceConfig;
|
import com.gmail.nossr50.config.experience.ExperienceConfig;
|
||||||
import com.gmail.nossr50.datatypes.experience.XPGainReason;
|
import com.gmail.nossr50.datatypes.experience.XPGainReason;
|
||||||
@ -306,9 +307,11 @@ public class WoodcuttingManager extends SkillManager {
|
|||||||
Misc.spawnItemsFromCollection(Misc.getBlockCenter(blockState), block.getDrops(), ItemSpawnReason.TREE_FELLER_DISPLACED_BLOCK);
|
Misc.spawnItemsFromCollection(Misc.getBlockCenter(blockState), block.getDrops(), ItemSpawnReason.TREE_FELLER_DISPLACED_BLOCK);
|
||||||
|
|
||||||
if(RankUtils.hasReachedRank(2, player, SubSkillType.WOODCUTTING_KNOCK_ON_WOOD)) {
|
if(RankUtils.hasReachedRank(2, player, SubSkillType.WOODCUTTING_KNOCK_ON_WOOD)) {
|
||||||
if(RandomChanceUtil.rollDice(75, 100)) {
|
if(AdvancedConfig.getInstance().isKnockOnWoodXPOrbEnabled()) {
|
||||||
int randOrbCount = Math.max(1, Misc.getRandom().nextInt(20));
|
if(RandomChanceUtil.rollDice(75, 100)) {
|
||||||
Misc.spawnExperienceOrb(blockState.getLocation(), randOrbCount);
|
int randOrbCount = Math.max(1, Misc.getRandom().nextInt(20));
|
||||||
|
Misc.spawnExperienceOrb(blockState.getLocation(), randOrbCount);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -582,26 +582,9 @@ Skills:
|
|||||||
###
|
###
|
||||||
Woodcutting:
|
Woodcutting:
|
||||||
TreeFeller:
|
TreeFeller:
|
||||||
# If set to true then tree feller will not use the new system and will use its old behaviour
|
Knock_On_Wood:
|
||||||
Classic: false
|
Add_XP_Orbs_To_Drops: true
|
||||||
# This is the time in seconds to build a new charge of Tree Feller
|
|
||||||
ChargeRate: 600
|
|
||||||
Rank_Levels:
|
|
||||||
Rank_1:
|
|
||||||
TreeSizeMax: 100
|
|
||||||
Charges: 1
|
|
||||||
Rank_2:
|
|
||||||
TreeSizeMax: 200
|
|
||||||
Charges: 1
|
|
||||||
Rank_3:
|
|
||||||
TreeSizeMax: 200
|
|
||||||
Charges: 2
|
|
||||||
Rank_4:
|
|
||||||
TreeSizeMax: 200
|
|
||||||
Charges: 3
|
|
||||||
Rank_5:
|
|
||||||
TreeSizeMax: 500
|
|
||||||
Charges: 3
|
|
||||||
# Double Drops
|
# Double Drops
|
||||||
HarvestLumber:
|
HarvestLumber:
|
||||||
# ChanceMax & MaxBonusLevel are only used for Classic, I'll make that more clear in the future.
|
# ChanceMax & MaxBonusLevel are only used for Classic, I'll make that more clear in the future.
|
||||||
|
Loading…
Reference in New Issue
Block a user