Skip to content

Commit

Permalink
* Support for new game versions added.
Browse files Browse the repository at this point in the history
  • Loading branch information
Hempfest committed Feb 5, 2024
1 parent c6a1f25 commit 7d727da
Show file tree
Hide file tree
Showing 12 changed files with 11 additions and 10 deletions.
2 changes: 1 addition & 1 deletion labyrinth-bukkit/pom.xml
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>labyrinth</artifactId>
<groupId>com.github.the-h-team</groupId>
<version>1.9.4-SNAPSHOT</version>
<version>1.9.4</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
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.9.4-SNAPSHOT</version>
<version>1.9.4</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.9.4-SNAPSHOT</version>
<version>1.9.4</version>
</parent>
<modelVersion>4.0.0</modelVersion>

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

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.9.4-SNAPSHOT</version>
<version>1.9.4</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.9.4-SNAPSHOT</version>
<version>1.9.4</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
Binary file not shown.
Binary file not shown.
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.9.4-SNAPSHOT</version>
<version>1.9.4</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.9.4-SNAPSHOT</version>
<version>1.9.4</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
Expand Up @@ -4,6 +4,7 @@
import com.github.sanctum.labyrinth.data.FileList;
import com.github.sanctum.panther.file.MemorySpace;
import com.github.sanctum.panther.file.Node;
import com.github.sanctum.panther.util.HUID;
import com.google.common.base.Preconditions;
import com.mojang.authlib.GameProfile;
import com.mojang.authlib.properties.Property;
Expand Down Expand Up @@ -146,7 +147,7 @@ public static ItemStack provide(String headValue) {
if (headValue != null) {

SkullMeta skullMeta = (SkullMeta) skull.getItemMeta();
GameProfile profile = new GameProfile(UUID.randomUUID(), null);
GameProfile profile = new GameProfile(UUID.randomUUID(), HUID.randomID().toString());

profile.getProperties().put("textures", new Property("textures", headValue));

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.9.4-SNAPSHOT</version>
<version>1.9.4</version>
<modules>
<module>labyrinth-common</module>
<module>labyrinth-gui</module>
Expand Down

0 comments on commit 7d727da

Please sign in to comment.