Merge branch 'development'

This commit is contained in:
Brianna 2020-09-29 19:37:49 -05:00
commit 60cfa8b264
33 changed files with 118 additions and 18 deletions

View File

@ -3,7 +3,7 @@
<parent>
<groupId>com.songoda</groupId>
<artifactId>SongodaCore-Modules</artifactId>
<version>2.4.14</version>
<version>2.4.15</version>
<relativePath>../</relativePath>
</parent>

View File

@ -54,7 +54,7 @@ public class SongodaCore {
/**
* This has been added as of Rev 6
*/
private final static String coreVersion = "2.4.14";
private final static String coreVersion = "2.4.15";
/**
* This is specific to the website api

View File

@ -3,7 +3,7 @@
<parent>
<groupId>com.songoda</groupId>
<artifactId>SongodaCore-Modules</artifactId>
<version>2.4.14</version>
<version>2.4.15</version>
<relativePath>../../</relativePath>
</parent>

View File

@ -25,6 +25,8 @@ public interface NBTCompound {
NBTCompound remove(String tag);
NBTCompound addNewCompound(String tag);
boolean has(String tag);
NBTObject getNBTObject(String tag);

View File

@ -3,7 +3,7 @@
<parent>
<groupId>com.songoda</groupId>
<artifactId>SongodaCore-Modules</artifactId>
<version>2.4.14</version>
<version>2.4.15</version>
<relativePath>../../</relativePath>
</parent>

View File

@ -86,6 +86,13 @@ public class NBTCompoundImpl implements NBTCompound {
return this;
}
@Override
public NBTCompound addNewCompound(String tag) {
NBTTagCompound newCompound = new NBTTagCompound();
compound.set(tag, newCompound);
return new NBTCompoundImpl(newCompound);
}
@Override
public boolean has(String tag) {
return compound.hasKey(tag);

View File

@ -3,7 +3,7 @@
<parent>
<groupId>com.songoda</groupId>
<artifactId>SongodaCore-Modules</artifactId>
<version>2.4.14</version>
<version>2.4.15</version>
<relativePath>../../</relativePath>
</parent>

View File

@ -86,6 +86,13 @@ public class NBTCompoundImpl implements NBTCompound {
return this;
}
@Override
public NBTCompound addNewCompound(String tag) {
NBTTagCompound newCompound = new NBTTagCompound();
compound.set(tag, newCompound);
return new NBTCompoundImpl(newCompound);
}
@Override
public boolean has(String tag) {
return compound.hasKey(tag);

View File

@ -3,7 +3,7 @@
<parent>
<groupId>com.songoda</groupId>
<artifactId>SongodaCore-Modules</artifactId>
<version>2.4.14</version>
<version>2.4.15</version>
<relativePath>../../</relativePath>
</parent>

View File

@ -86,6 +86,13 @@ public class NBTCompoundImpl implements NBTCompound {
return this;
}
@Override
public NBTCompound addNewCompound(String tag) {
NBTTagCompound newCompound = new NBTTagCompound();
compound.set(tag, newCompound);
return new NBTCompoundImpl(newCompound);
}
@Override
public boolean has(String tag) {
return compound.hasKey(tag);

View File

@ -3,7 +3,7 @@
<parent>
<groupId>com.songoda</groupId>
<artifactId>SongodaCore-Modules</artifactId>
<version>2.4.14</version>
<version>2.4.15</version>
<relativePath>../../</relativePath>
</parent>

View File

@ -86,6 +86,13 @@ public class NBTCompoundImpl implements NBTCompound {
return this;
}
@Override
public NBTCompound addNewCompound(String tag) {
NBTTagCompound newCompound = new NBTTagCompound();
compound.set(tag, newCompound);
return new NBTCompoundImpl(newCompound);
}
@Override
public boolean has(String tag) {
return compound.hasKey(tag);

View File

@ -3,7 +3,7 @@
<parent>
<groupId>com.songoda</groupId>
<artifactId>SongodaCore-Modules</artifactId>
<version>2.4.14</version>
<version>2.4.15</version>
<relativePath>../../</relativePath>
</parent>

View File

@ -86,6 +86,13 @@ public class NBTCompoundImpl implements NBTCompound {
return this;
}
@Override
public NBTCompound addNewCompound(String tag) {
NBTTagCompound newCompound = new NBTTagCompound();
compound.set(tag, newCompound);
return new NBTCompoundImpl(newCompound);
}
@Override
public boolean has(String tag) {
return compound.hasKey(tag);

View File

@ -3,7 +3,7 @@
<parent>
<groupId>com.songoda</groupId>
<artifactId>SongodaCore-Modules</artifactId>
<version>2.4.14</version>
<version>2.4.15</version>
<relativePath>../../</relativePath>
</parent>

View File

@ -86,6 +86,13 @@ public class NBTCompoundImpl implements NBTCompound {
return this;
}
@Override
public NBTCompound addNewCompound(String tag) {
NBTTagCompound newCompound = new NBTTagCompound();
compound.set(tag, newCompound);
return new NBTCompoundImpl(newCompound);
}
@Override
public boolean has(String tag) {
return compound.hasKey(tag);

View File

@ -3,7 +3,7 @@
<parent>
<groupId>com.songoda</groupId>
<artifactId>SongodaCore-Modules</artifactId>
<version>2.4.14</version>
<version>2.4.15</version>
<relativePath>../../</relativePath>
</parent>

View File

@ -86,6 +86,13 @@ public class NBTCompoundImpl implements NBTCompound {
return this;
}
@Override
public NBTCompound addNewCompound(String tag) {
NBTTagCompound newCompound = new NBTTagCompound();
compound.set(tag, newCompound);
return new NBTCompoundImpl(newCompound);
}
@Override
public boolean has(String tag) {
return compound.hasKey(tag);

View File

@ -3,7 +3,7 @@
<parent>
<groupId>com.songoda</groupId>
<artifactId>SongodaCore-Modules</artifactId>
<version>2.4.14</version>
<version>2.4.15</version>
<relativePath>../../</relativePath>
</parent>

View File

@ -86,6 +86,13 @@ public class NBTCompoundImpl implements NBTCompound {
return this;
}
@Override
public NBTCompound addNewCompound(String tag) {
NBTTagCompound newCompound = new NBTTagCompound();
compound.set(tag, newCompound);
return new NBTCompoundImpl(newCompound);
}
@Override
public boolean has(String tag) {
return compound.hasKey(tag);

View File

@ -3,7 +3,7 @@
<parent>
<groupId>com.songoda</groupId>
<artifactId>SongodaCore-Modules</artifactId>
<version>2.4.14</version>
<version>2.4.15</version>
<relativePath>../../</relativePath>
</parent>

View File

@ -86,6 +86,13 @@ public class NBTCompoundImpl implements NBTCompound {
return this;
}
@Override
public NBTCompound addNewCompound(String tag) {
NBTTagCompound newCompound = new NBTTagCompound();
compound.set(tag, newCompound);
return new NBTCompoundImpl(newCompound);
}
@Override
public boolean has(String tag) {
return compound.hasKey(tag);

View File

@ -3,7 +3,7 @@
<parent>
<groupId>com.songoda</groupId>
<artifactId>SongodaCore-Modules</artifactId>
<version>2.4.14</version>
<version>2.4.15</version>
<relativePath>../../</relativePath>
</parent>

View File

@ -87,6 +87,13 @@ public class NBTCompoundImpl implements NBTCompound {
return this;
}
@Override
public NBTCompound addNewCompound(String tag) {
NBTTagCompound newCompound = new NBTTagCompound();
compound.set(tag, newCompound);
return new NBTCompoundImpl(newCompound);
}
@Override
public boolean has(String tag) {
return compound.hasKey(tag);

View File

@ -3,7 +3,7 @@
<parent>
<groupId>com.songoda</groupId>
<artifactId>SongodaCore-Modules</artifactId>
<version>2.4.14</version>
<version>2.4.15</version>
<relativePath>../../</relativePath>
</parent>

View File

@ -87,6 +87,13 @@ public class NBTCompoundImpl implements NBTCompound {
return this;
}
@Override
public NBTCompound addNewCompound(String tag) {
NBTTagCompound newCompound = new NBTTagCompound();
compound.set(tag, newCompound);
return new NBTCompoundImpl(newCompound);
}
@Override
public boolean has(String tag) {
return compound.hasKey(tag);

View File

@ -3,7 +3,7 @@
<parent>
<groupId>com.songoda</groupId>
<artifactId>SongodaCore-Modules</artifactId>
<version>2.4.14</version>
<version>2.4.15</version>
<relativePath>../../</relativePath>
</parent>

View File

@ -87,6 +87,13 @@ public class NBTCompoundImpl implements NBTCompound {
return this;
}
@Override
public NBTCompound addNewCompound(String tag) {
NBTTagCompound newCompound = new NBTTagCompound();
compound.set(tag, newCompound);
return new NBTCompoundImpl(newCompound);
}
@Override
public boolean has(String tag) {
return compound.hasKey(tag);

View File

@ -3,7 +3,7 @@
<parent>
<groupId>com.songoda</groupId>
<artifactId>SongodaCore-Modules</artifactId>
<version>2.4.14</version>
<version>2.4.15</version>
<relativePath>../../</relativePath>
</parent>

View File

@ -86,6 +86,13 @@ public class NBTCompoundImpl implements NBTCompound {
return this;
}
@Override
public NBTCompound addNewCompound(String tag) {
NBTTagCompound newCompound = new NBTTagCompound();
compound.set(tag, newCompound);
return new NBTCompoundImpl(newCompound);
}
@Override
public boolean has(String tag) {
return compound.hasKey(tag);

View File

@ -3,7 +3,7 @@
<parent>
<groupId>com.songoda</groupId>
<artifactId>SongodaCore-Modules</artifactId>
<version>2.4.14</version>
<version>2.4.15</version>
<relativePath>../../</relativePath>
</parent>

View File

@ -86,6 +86,13 @@ public class NBTCompoundImpl implements NBTCompound {
return this;
}
@Override
public NBTCompound addNewCompound(String tag) {
NBTTagCompound newCompound = new NBTTagCompound();
compound.set(tag, newCompound);
return new NBTCompoundImpl(newCompound);
}
@Override
public boolean has(String tag) {
return compound.hasKey(tag);

View File

@ -2,7 +2,7 @@
<groupId>com.songoda</groupId>
<artifactId>SongodaCore-Modules</artifactId>
<version>2.4.14</version>
<version>2.4.15</version>
<modelVersion>4.0.0</modelVersion>
<packaging>pom</packaging>