Skip to content

Commit

Permalink
optimizations
Browse files Browse the repository at this point in the history
  • Loading branch information
nossr50 committed Nov 3, 2024
1 parent 9f7dbc2 commit 4ba85aa
Show file tree
Hide file tree
Showing 32 changed files with 764 additions and 1,521 deletions.
15 changes: 8 additions & 7 deletions Changelog.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
Version 2.2.024
Significant optimizations to the way mcMMO handles grabbing XP values for blocks
Fixed a bug where Giga Drill breaker was giving out more drop chance than intended
Large optimizations to most block interactions in mcMMO code

Version 2.2.023
Compatibility with Minecraft 1.21.3
Expand Down Expand Up @@ -2563,7 +2564,7 @@ Version 2.1.38
Version 2.1.37
Fixed a potential IndexOutOfBoundsException when informing a disconnected player that their Blast Mining was off CD
Updated hu_HU locale (thanks andris)

Version 2.1.36
Updated German locale (Thanks OverCrave)
Fixed a bug preventing Villagers from giving combat XP
Expand Down Expand Up @@ -3551,7 +3552,7 @@ Version 1.3.13
+ Added displaying bonus perks on skill commands
+ Added config option to disable gaining Acrobatics XP from dodging lightning
+ Added missing skill guides. They're finally here!
+ Added more localization
+ Added more localization
+ Added a very secret easter egg
= Fix issue with Sand/Gravel tracking
= Fix possible NPE when using the PartyAPI to add a player to a party that doesn't exist.
Expand Down Expand Up @@ -3648,7 +3649,7 @@ Version 1.3.11
= Fixed bug where mcMMO could throw NPE errors if trees cut down were from a custom mod and had an id of 17
= Fixed dupe bug where mcMMO would ignore other block-protection plugins for various abilities
= Fixed NPE with hardcore mode's vampirism

Version 1.3.10
+ Added 1.3.1 compatibility
+ Added permission node for Iron Grip ability (mcmmo.ability.unarmed.irongrip)
Expand Down Expand Up @@ -3910,7 +3911,7 @@ Version 1.3.02
Version 1.3.01
= Fixed bug where Tree Feller had no cooldown
= Fixed bug with activating Skull Splitter after using Tree Feller

Version 1.3.00
+ Added ability to customize drops for Excavation skill (treasures.yml)
+ Added ability to customize drops for Fishing skill (treasures.yml)
Expand Down Expand Up @@ -3974,7 +3975,7 @@ Version 1.3.00
- Removed unused settings from config.yml (HP Regen)
- Removed Nether Brick from Mining XP Tables
- Removed Stone Brick from Mining XP Tables

Version 1.2.12
- Fixed issue that caused terrible MySQL performance and negative XP on levelup (Issue #134)
- Fixed addxp command taking xprate and skill modifiers into account
Expand Down Expand Up @@ -4983,7 +4984,7 @@ Version 0.5.9
Version 0.5.8

Fixed bug where players inventories would dupe during combat

Version 0.5.7

Fixed monsters instant killing players
Expand Down
324 changes: 0 additions & 324 deletions src/main/java/com/gmail/nossr50/commands/McImportCommand.java

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -376,6 +376,7 @@ public boolean doesBlockGiveSkillXP(PrimarySkillType skill, Material material) {
return getXp(skill, material) > 0;
}

@Deprecated(forRemoval = true, since = "2.2.024")
public boolean doesBlockGiveSkillXP(PrimarySkillType skill, BlockData data) {
return getXp(skill, data) > 0;
}
Expand Down
Loading

0 comments on commit 4ba85aa

Please sign in to comment.