Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
<powermock.version>2.0.9</powermock.version>
<!-- More visible way how to change dependency versions -->
<spigot.version>1.21.3-R0.1-SNAPSHOT</spigot.version>
<bentobox.version>3.2.5-SNAPSHOT</bentobox.version>
<bentobox.version>3.3.1-SNAPSHOT</bentobox.version>
<!-- Warps addon version -->
<warps.version>1.12.0</warps.version>
<!-- Visit addon version -->
Expand All @@ -67,7 +67,7 @@
<!-- Do not change unless you want different name for local builds. -->
<build.number>-LOCAL</build.number>
<!-- This allows to change between versions. -->
<build.version>2.19.2</build.version>
<build.version>2.19.3</build.version>
<sonar.projectKey>BentoBoxWorld_Level</sonar.projectKey>
<sonar.organization>bentobox-world</sonar.organization>
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/world/bentobox/level/config/BlockConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ private void addMissing(ConfigurationSection blocks) {

private boolean isOther(String key) {
// Maybe a custom name space
return ItemsAdderHook.isInRegistry(key);
return addon.isItemsAdder() && ItemsAdderHook.isInRegistry(key);
}

private boolean isSpawner(String key) {
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/panels/detail_panel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ detail_panel:
# CustomPotionColor uses the Decimal description of a Color, just as leather armor does.
# All you need to do is take a hex code of a color (like #ff00aa) which represents red,
# green, blue as 2 hex digits each and convert that number into a decimal, using a hex to decimal calculator.
icon: tipped_arrow{CustomPotionColor:11546150}
icon: tipped_arrow[potion_contents={custom_color:11546150}]
title: level.gui.buttons.previous.name
description: level.gui.buttons.previous.description
data:
Expand All @@ -154,7 +154,7 @@ detail_panel:
7: material_button
8: material_button
9:
icon: tipped_arrow{CustomPotionColor:8439583}
icon: tipped_arrow[potion_contents={custom_color:8439583}]
title: level.gui.buttons.next.name
description: level.gui.buttons.next.description
data:
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/panels/value_panel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ value_panel:
8: material_button
3:
1:
icon: tipped_arrow{CustomPotionColor:11546150}
icon: tipped_arrow[potion_contents={custom_color:11546150}]
title: level.gui.buttons.previous.name
description: level.gui.buttons.previous.description
data:
Expand All @@ -82,7 +82,7 @@ value_panel:
7: material_button
8: material_button
9:
icon: tipped_arrow{CustomPotionColor:8439583}
icon: tipped_arrow[potion_contents={custom_color:8439583}]
title: level.gui.buttons.next.name
description: level.gui.buttons.next.description
data:
Expand Down
Loading