Skip to content

Commit

Permalink
Merge pull request #37 from Londiuh/master
Browse files Browse the repository at this point in the history
Fix #36
  • Loading branch information
samolego authored Aug 7, 2021
2 parents fdc6902 + 55bfe13 commit 7fecdb3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ dependencies {

// LuckPerms
modImplementation 'me.lucko:fabric-permissions-api:0.1-SNAPSHOT'
modCompileOnly('com.github.samolego.Taterzens:taterzens-fabric:1.1.0')
modCompileOnly('com.github.samolego.Taterzens:taterzens-fabric:1.3.0')

//modRuntime("com.github.gnembon:fabric-carpet:${project.carpet_core_version}")
//modRuntime "com.github.gnembon:fabric-carpet:${project.carpet_branch}-SNAPSHOT"
Expand Down
Empty file modified gradlew
100644 → 100755
Empty file.
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

import net.minecraft.nbt.NbtCompound;
import net.minecraft.server.network.ServerPlayerEntity;
import org.samo_lego.taterzens.interfaces.TaterzenEditor;
import org.samo_lego.taterzens.interfaces.ITaterzenEditor;
import org.samo_lego.taterzens.npc.TaterzenNPC;

public class TaterzensCompatibility {

public static boolean setTaterzenSkin(ServerPlayerEntity executor, String value, String signature) {
TaterzenNPC taterzen = ((TaterzenEditor) executor).getNpc();
TaterzenNPC taterzen = ((ITaterzenEditor) executor).getNpc();

if(taterzen != null) {
NbtCompound skinTag = new NbtCompound();
Expand Down

0 comments on commit 7fecdb3

Please sign in to comment.