Skip to content

Commit 51e0c9e

Browse files
authored
Merge pull request #361 from BentoBoxWorld/develop
Release 2.19.3
2 parents c621e1b + db8767e commit 51e0c9e

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
<powermock.version>2.0.9</powermock.version>
5656
<!-- More visible way how to change dependency versions -->
5757
<spigot.version>1.21.3-R0.1-SNAPSHOT</spigot.version>
58-
<bentobox.version>3.2.5-SNAPSHOT</bentobox.version>
58+
<bentobox.version>3.3.1-SNAPSHOT</bentobox.version>
5959
<!-- Warps addon version -->
6060
<warps.version>1.12.0</warps.version>
6161
<!-- Visit addon version -->
@@ -67,7 +67,7 @@
6767
<!-- Do not change unless you want different name for local builds. -->
6868
<build.number>-LOCAL</build.number>
6969
<!-- This allows to change between versions. -->
70-
<build.version>2.19.2</build.version>
70+
<build.version>2.19.3</build.version>
7171
<sonar.projectKey>BentoBoxWorld_Level</sonar.projectKey>
7272
<sonar.organization>bentobox-world</sonar.organization>
7373
<sonar.host.url>https://sonarcloud.io</sonar.host.url>

src/main/java/world/bentobox/level/config/BlockConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ private void addMissing(ConfigurationSection blocks) {
100100

101101
private boolean isOther(String key) {
102102
// Maybe a custom name space
103-
return ItemsAdderHook.isInRegistry(key);
103+
return addon.isItemsAdder() && ItemsAdderHook.isInRegistry(key);
104104
}
105105

106106
private boolean isSpawner(String key) {

src/main/resources/panels/detail_panel.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ detail_panel:
136136
# CustomPotionColor uses the Decimal description of a Color, just as leather armor does.
137137
# All you need to do is take a hex code of a color (like #ff00aa) which represents red,
138138
# green, blue as 2 hex digits each and convert that number into a decimal, using a hex to decimal calculator.
139-
icon: tipped_arrow{CustomPotionColor:11546150}
139+
icon: tipped_arrow[potion_contents={custom_color:11546150}]
140140
title: level.gui.buttons.previous.name
141141
description: level.gui.buttons.previous.description
142142
data:
@@ -154,7 +154,7 @@ detail_panel:
154154
7: material_button
155155
8: material_button
156156
9:
157-
icon: tipped_arrow{CustomPotionColor:8439583}
157+
icon: tipped_arrow[potion_contents={custom_color:8439583}]
158158
title: level.gui.buttons.next.name
159159
description: level.gui.buttons.next.description
160160
data:

src/main/resources/panels/value_panel.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ value_panel:
6464
8: material_button
6565
3:
6666
1:
67-
icon: tipped_arrow{CustomPotionColor:11546150}
67+
icon: tipped_arrow[potion_contents={custom_color:11546150}]
6868
title: level.gui.buttons.previous.name
6969
description: level.gui.buttons.previous.description
7070
data:
@@ -82,7 +82,7 @@ value_panel:
8282
7: material_button
8383
8: material_button
8484
9:
85-
icon: tipped_arrow{CustomPotionColor:8439583}
85+
icon: tipped_arrow[potion_contents={custom_color:8439583}]
8686
title: level.gui.buttons.next.name
8787
description: level.gui.buttons.next.description
8888
data:

0 commit comments

Comments
 (0)