Skip to content

Commit

Permalink
* Fix deploy in Menu object builder.
Browse files Browse the repository at this point in the history
  • Loading branch information
Hempfest committed Oct 4, 2022
1 parent e65f85c commit abe8b9f
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion labyrinth-common/pom.xml
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>labyrinth</artifactId>
<groupId>com.github.the-h-team</groupId>
<version>1.8.1</version>
<version>1.8.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion labyrinth-gui/pom.xml
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>labyrinth</artifactId>
<groupId>com.github.the-h-team</groupId>
<version>1.8.1</version>
<version>1.8.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
Expand Up @@ -673,7 +673,7 @@ public Builder<T, K> setProcessEvent(Process process) {
}

public T orGet(Predicate<Menu> predicate) {
Menu test = MenuRegistration.getInstance().getAll().get().stream().filter(predicate).findFirst().orElse(null);
Menu test = MenuRegistration.getInstance().getAll().deploy().get().stream().filter(predicate).findFirst().orElse(null);
if (test != null) return (T) test;

Menu menu = null;
Expand Down
2 changes: 1 addition & 1 deletion labyrinth-perms/pom.xml
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>labyrinth</artifactId>
<groupId>com.github.the-h-team</groupId>
<version>1.8.1</version>
<version>1.8.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion labyrinth-plugin/pom.xml
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>labyrinth</artifactId>
<groupId>com.github.the-h-team</groupId>
<version>1.8.1</version>
<version>1.8.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion labyrinth-regions/pom.xml
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>labyrinth</artifactId>
<groupId>com.github.the-h-team</groupId>
<version>1.8.1</version>
<version>1.8.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion labyrinth-skulls/pom.xml
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>labyrinth</artifactId>
<groupId>com.github.the-h-team</groupId>
<version>1.8.1</version>
<version>1.8.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -6,7 +6,7 @@

<groupId>com.github.the-h-team</groupId>
<artifactId>labyrinth</artifactId>
<version>1.8.1</version>
<version>1.8.2</version>
<modules>
<module>labyrinth-common</module>
<module>labyrinth-gui</module>
Expand Down

0 comments on commit abe8b9f

Please sign in to comment.