Untag NBTTagList.removeTag as client side only, allowing simple removal ont he server side. Closes #477

This commit is contained in:
LexManos 2013-04-04 18:50:43 -07:00 committed by Christian
parent 02d0e5e9ed
commit 5f44333b8f
1 changed files with 19 additions and 0 deletions

View 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.
*/