Untag NBTTagList.removeTag as client side only, allowing simple removal ont he server side. Closes #477
This commit is contained in:
parent
02d0e5e9ed
commit
5f44333b8f
1 changed files with 19 additions and 0 deletions
19
patches/minecraft/net/minecraft/nbt/NBTTagList.java.patch
Normal file
19
patches/minecraft/net/minecraft/nbt/NBTTagList.java.patch
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
--- ../src_base/minecraft/net/minecraft/nbt/NBTTagList.java
|
||||||
|
+++ ../src_work/minecraft/net/minecraft/nbt/NBTTagList.java
|
||||||
|
@@ -1,7 +1,5 @@
|
||||||
|
package net.minecraft.nbt;
|
||||||
|
|
||||||
|
-import cpw.mods.fml.relauncher.Side;
|
||||||
|
-import cpw.mods.fml.relauncher.SideOnly;
|
||||||
|
import java.io.DataInput;
|
||||||
|
import java.io.DataOutput;
|
||||||
|
import java.io.IOException;
|
||||||
|
@@ -92,8 +90,6 @@
|
||||||
|
this.tagList.add(par1NBTBase);
|
||||||
|
}
|
||||||
|
|
||||||
|
- @SideOnly(Side.CLIENT)
|
||||||
|
-
|
||||||
|
/**
|
||||||
|
* Removes a tag at the given index.
|
||||||
|
*/
|
Loading…
Reference in a new issue