Skip to content

Commit

Permalink
Merge pull request #319 from BentoBoxWorld/develop
Browse files Browse the repository at this point in the history
Version 2.14.1
  • Loading branch information
tastybento authored Jul 5, 2024
2 parents 45cfe39 + 972b658 commit a685bc8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,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.14.0</build.version>
<build.version>2.14.1</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
8 changes: 7 additions & 1 deletion src/main/java/world/bentobox/level/LevelPladdon.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,14 @@
*
*/
public class LevelPladdon extends Pladdon {

private Addon addon;

@Override
public Addon getAddon() {
return new Level();
if (addon == null) {
addon = new Level();
}
return addon;
}
}

0 comments on commit a685bc8

Please sign in to comment.