mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-30 04:02:50 +01:00
Remember, minimal diffs and *NO TABS*
This commit is contained in:
parent
b1ee09f733
commit
136ad76e6a
6 changed files with 91 additions and 91 deletions
|
@ -1,5 +1,6 @@
|
||||||
package net.minecraft.server;
|
package net.minecraft.server;
|
||||||
|
|
||||||
|
|
||||||
import java.util.Random;
|
import java.util.Random;
|
||||||
|
|
||||||
import org.bukkit.craftbukkit.CraftLivingEntity;
|
import org.bukkit.craftbukkit.CraftLivingEntity;
|
||||||
|
@ -84,3 +85,4 @@ public class EntitySkeleton extends EntityMobs {
|
||||||
a = new ItemStack(Item.i, 1);
|
a = new ItemStack(Item.i, 1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -3,17 +3,15 @@ package net.minecraft.server;
|
||||||
|
|
||||||
public class ItemInWorldManager {
|
public class ItemInWorldManager {
|
||||||
|
|
||||||
private World b; //currWorld
|
private World b;
|
||||||
public EntityPlayer a; //currPlayer
|
public EntityPlayer a;
|
||||||
private float c; // not used?
|
private float c;
|
||||||
//Craftbukkit start
|
public float d; // CraftBukkit private -> public
|
||||||
public float d; // blockDamage (0 up to 1) //Craftbukkit - Made public to get damage
|
private int e;
|
||||||
//Craftbukkit stop
|
private float f;
|
||||||
private int e; // funny counter
|
private int g;
|
||||||
private float f; // blockHits
|
private int h;
|
||||||
private int g; //posX
|
private int i;
|
||||||
private int h; //posY
|
|
||||||
private int i; //posZ
|
|
||||||
|
|
||||||
public ItemInWorldManager(World world) {
|
public ItemInWorldManager(World world) {
|
||||||
d = 0.0F;
|
d = 0.0F;
|
||||||
|
|
Loading…
Reference in a new issue