Skip to content

Commit

Permalink
Version 3.3.0-alpha.19e 2024-12-14.
Browse files Browse the repository at this point in the history
  • Loading branch information
rbluer committed Dec 15, 2024
1 parent 81a89e5 commit 08d3506
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
7 changes: 5 additions & 2 deletions docs/changelog_v3.3.x.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,10 @@
These change logs represent the work that has been going on within prison.


# 3.3.0-alpha.19d 2024-12-14
# 3.3.0-alpha.19e 2024-12-14


### Version 3.3.0-alpha.19e 2024-12-14


* **Updated nbtApi from v2.13.2 to v2.14.0. This should provide better support for spigot 1.21.4.**
Expand Down Expand Up @@ -93,7 +96,7 @@ SpigotPlayer: Using bukkit's block.isPassable() on getLineOfSight(), but may nee
It was not clear why mine bombs were not working.


** 3.3.0-alpha.19d 2024-09-26**
### 3.3.0-alpha.19d 2024-09-26**


* **Prison blocks: It was realized that due to a recent expansion of the items that are included in the default for sellall, that the first 27 or so entries, were the blocks that were used in the auto generated mines when running the command '/ranks autoConfigure'.**
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
## # This is actually the "correct" place to define the version for the project.
## # Used within build.gradle with ${project.version}.
## # Can be overridden on the command line: gradle -Pversion=3.2.1-alpha.3
version=3.3.0-alpha.19d
version=3.3.0-alpha.19e



Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -144,8 +144,13 @@ private void initCachedData() {
permissionAutoSellPerUserToggleable = sellAllConfig.getString("Options.Full_Inv_AutoSell_PerUserToggleable_Permission");
permissionItemTrigger = sellAllConfig.getString("Options.ShiftAndRightClickSellAll.Permission");
sellAllCurrency = sellAllConfig.getString("Options.SellAll_Currency");

// sellAllSoundSuccess = XSound.matchXSound("Options.Sell_Sound_Success_Name").orElse(XSound.ENTITY_PLAYER_LEVELUP).get();
sellAllSoundSuccess = XSound.matchXSound("Options.Sell_Sound_Success_Name").orElse(XSound.ENTITY_PLAYER_LEVELUP).parseSound();

// sellAllSoundFail = XSound.matchXSound("Options.Sell_Sound_Fail_Name").orElse(XSound.BLOCK_ANVIL_PLACE).get();
sellAllSoundFail = XSound.matchXSound("Options.Sell_Sound_Fail_Name").orElse(XSound.BLOCK_ANVIL_PLACE).parseSound();

sellAllSignTag = Text.translateAmpColorCodes(sellAllConfig.getString("Options.SellAll_Sign_Visible_Tag") );
// sellAllBlocks = initSellAllBlocks();
sellAllItems = initSellAllItems();
Expand Down

0 comments on commit 08d3506

Please sign in to comment.