mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-02 04:56: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;
|
||||
|
||||
|
||||
import java.util.Random;
|
||||
|
||||
import org.bukkit.craftbukkit.CraftLivingEntity;
|
||||
|
@ -84,3 +85,4 @@ public class EntitySkeleton extends EntityMobs {
|
|||
a = new ItemStack(Item.i, 1);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -3,17 +3,15 @@ package net.minecraft.server;
|
|||
|
||||
public class ItemInWorldManager {
|
||||
|
||||
private World b; //currWorld
|
||||
public EntityPlayer a; //currPlayer
|
||||
private float c; // not used?
|
||||
//Craftbukkit start
|
||||
public float d; // blockDamage (0 up to 1) //Craftbukkit - Made public to get damage
|
||||
//Craftbukkit stop
|
||||
private int e; // funny counter
|
||||
private float f; // blockHits
|
||||
private int g; //posX
|
||||
private int h; //posY
|
||||
private int i; //posZ
|
||||
private World b;
|
||||
public EntityPlayer a;
|
||||
private float c;
|
||||
public float d; // CraftBukkit private -> public
|
||||
private int e;
|
||||
private float f;
|
||||
private int g;
|
||||
private int h;
|
||||
private int i;
|
||||
|
||||
public ItemInWorldManager(World world) {
|
||||
d = 0.0F;
|
||||
|
|
Loading…
Reference in a new issue