Skip to content

Commit

Permalink
Added LangUtils support. (#1693)
Browse files Browse the repository at this point in the history
  • Loading branch information
apachezy authored Mar 13, 2021
1 parent 40d1c31 commit 0f0d8b9
Show file tree
Hide file tree
Showing 7 changed files with 645 additions and 6 deletions.
7 changes: 7 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -292,6 +292,13 @@
<version>1.0.6</version>
<scope>compile</scope>
</dependency>
<!-- LangUtils -->
<dependency>
<groupId>com.github.apachezy</groupId>
<artifactId>LangUtils</artifactId>
<version>3.1.3</version>
<scope>provided</scope>
</dependency>
</dependencies>

<build>
Expand Down
2 changes: 2 additions & 0 deletions src/main/java/world/bentobox/bentobox/BentoBox.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
import world.bentobox.bentobox.hooks.MultiverseCoreHook;
import world.bentobox.bentobox.hooks.VaultHook;
import world.bentobox.bentobox.hooks.WorldEditHook;
import world.bentobox.bentobox.hooks.LangUtilsHook;
import world.bentobox.bentobox.hooks.placeholders.PlaceholderAPIHook;
import world.bentobox.bentobox.listeners.BannedCommands;
import world.bentobox.bentobox.listeners.BlockEndDragon;
Expand Down Expand Up @@ -228,6 +229,7 @@ private void completeSetup(long loadTime) {
// Register additional hooks
hooksManager.registerHook(new DynmapHook());
hooksManager.registerHook(new WorldEditHook());
hooksManager.registerHook(new LangUtilsHook());

webManager = new WebManager(this);

Expand Down
Loading

0 comments on commit 0f0d8b9

Please sign in to comment.