diff --git a/.idea/workspace.xml b/.idea/workspace.xml
index 301760d..2c6f85d 100644
--- a/.idea/workspace.xml
+++ b/.idea/workspace.xml
@@ -5,9 +5,12 @@
+
+
+
@@ -233,26 +236,26 @@
-
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
+
@@ -273,10 +276,10 @@
-
+
-
+
@@ -289,10 +292,14 @@
-
+
-
+
+
+
+
+
diff --git a/pom.xml b/pom.xml
index 4bfc554..61d07ac 100644
--- a/pom.xml
+++ b/pom.xml
@@ -6,7 +6,7 @@
net.seanomik
tamablefoxes
- 1.7.3-SNAPSHOT
+ 1.7.4-SNAPSHOT
jar
Tamablefoxes
diff --git a/src/main/java/net/seanomik/tamablefoxes/versions/version_1_14_R1/EntityTamableFox.java b/src/main/java/net/seanomik/tamablefoxes/versions/version_1_14_R1/EntityTamableFox.java
index ee3513b..da694f2 100644
--- a/src/main/java/net/seanomik/tamablefoxes/versions/version_1_14_R1/EntityTamableFox.java
+++ b/src/main/java/net/seanomik/tamablefoxes/versions/version_1_14_R1/EntityTamableFox.java
@@ -185,16 +185,17 @@ public class EntityTamableFox extends EntityFox {
}
// readAdditionalSaveData
+ @Override
public void a(NBTTagCompound compound) {
super.a(compound);
- String ownerUuid;
+ String ownerUuid = "";
if (compound.hasKeyOfType("OwnerUUID", 8)) {
ownerUuid = compound.getString("OwnerUUID");
- } else {
+ }/* else {
String var2 = compound.getString("Owner");
ownerUuid = NameReferencingFileConverter.a(this.getMinecraftServer(), var2);
- }
+ }*/
if (!ownerUuid.isEmpty()) {
try {
diff --git a/src/main/java/net/seanomik/tamablefoxes/versions/version_1_15_R1/EntityTamableFox.java b/src/main/java/net/seanomik/tamablefoxes/versions/version_1_15_R1/EntityTamableFox.java
index 7b613d0..3b1e1e4 100644
--- a/src/main/java/net/seanomik/tamablefoxes/versions/version_1_15_R1/EntityTamableFox.java
+++ b/src/main/java/net/seanomik/tamablefoxes/versions/version_1_15_R1/EntityTamableFox.java
@@ -185,16 +185,17 @@ public class EntityTamableFox extends EntityFox {
}
// readAdditionalSaveData
+ @Override
public void a(NBTTagCompound compound) {
super.a(compound);
- String ownerUuid;
+ String ownerUuid = "";
if (compound.hasKeyOfType("OwnerUUID", 8)) {
ownerUuid = compound.getString("OwnerUUID");
- } else {
+ }/* else {
String var2 = compound.getString("Owner");
ownerUuid = NameReferencingFileConverter.a(this.getMinecraftServer(), var2);
- }
+ }*/
if (!ownerUuid.isEmpty()) {
try {
diff --git a/src/main/java/net/seanomik/tamablefoxes/versions/version_1_16_R1/EntityTamableFox.java b/src/main/java/net/seanomik/tamablefoxes/versions/version_1_16_R1/EntityTamableFox.java
index 31600b4..eedffb7 100644
--- a/src/main/java/net/seanomik/tamablefoxes/versions/version_1_16_R1/EntityTamableFox.java
+++ b/src/main/java/net/seanomik/tamablefoxes/versions/version_1_16_R1/EntityTamableFox.java
@@ -182,16 +182,17 @@ public class EntityTamableFox extends EntityFox {
compound.setBoolean("Sitting", this.isSitting());
}
+ @Override
public void loadData(NBTTagCompound compound) {
super.loadData(compound);
- String ownerUuid;
+ String ownerUuid = "";
if (compound.hasKeyOfType("OwnerUUID", 8)) {
ownerUuid = compound.getString("OwnerUUID");
- } else {
+ }/* else {
String var2 = compound.getString("Owner");
- ownerUuid = NameReferencingFileConverter.a(this.getMinecraftServer(), var2).toString();
- }
+ ownerUuid = NameReferencingFileConverter.a(this.getMinecraftServer(), var2);
+ }*/
if (!ownerUuid.isEmpty()) {
try {
diff --git a/src/main/java/net/seanomik/tamablefoxes/versions/version_1_16_R2/EntityTamableFox.java b/src/main/java/net/seanomik/tamablefoxes/versions/version_1_16_R2/EntityTamableFox.java
index 6c8d2ba..4522fac 100644
--- a/src/main/java/net/seanomik/tamablefoxes/versions/version_1_16_R2/EntityTamableFox.java
+++ b/src/main/java/net/seanomik/tamablefoxes/versions/version_1_16_R2/EntityTamableFox.java
@@ -180,16 +180,17 @@ public class EntityTamableFox extends EntityFox {
compound.setBoolean("Sitting", this.isSitting());
}
+ @Override
public void loadData(NBTTagCompound compound) {
super.loadData(compound);
- String ownerUuid;
+ String ownerUuid = "";
if (compound.hasKeyOfType("OwnerUUID", 8)) {
ownerUuid = compound.getString("OwnerUUID");
- } else {
+ }/* else {
String var2 = compound.getString("Owner");
- ownerUuid = NameReferencingFileConverter.a(this.getMinecraftServer(), var2).toString();
- }
+ ownerUuid = NameReferencingFileConverter.a(this.getMinecraftServer(), var2);
+ }*/
if (!ownerUuid.isEmpty()) {
try {
diff --git a/target/classes/plugin.yml b/target/classes/plugin.yml
index cf29ff9..09be1fb 100644
--- a/target/classes/plugin.yml
+++ b/target/classes/plugin.yml
@@ -1,5 +1,5 @@
name: Tamablefoxes
-version: 1.7.3-SNAPSHOT
+version: 1.7.4-SNAPSHOT
main: net.seanomik.tamablefoxes.TamableFoxes
api-version: 1.14
load: STARTUP
diff --git a/target/maven-archiver/pom.properties b/target/maven-archiver/pom.properties
index ed2468e..e648426 100644
--- a/target/maven-archiver/pom.properties
+++ b/target/maven-archiver/pom.properties
@@ -1,5 +1,5 @@
#Generated by Maven
-#Thu Sep 03 12:37:00 CDT 2020
+#Thu Sep 03 18:37:46 CDT 2020
groupId=net.seanomik
artifactId=tamablefoxes
-version=1.7.3-SNAPSHOT
+version=1.7.4-SNAPSHOT