Mirror von
https://github.com/PaperMC/Paper.git
synchronisiert 2024-12-22 06:20:06 +01:00
b00de5f176
Added newlines at the end of files Fixed improper line endings on some files Matched start - end comments Added some missing comments for diffs Fixed syntax on some spots Minimized some diff Removed some no longer used files Added comment on some required files with no changes Fixed imports of items used once Added imports for items used more than once
36 Zeilen
1.1 KiB
Java
36 Zeilen
1.1 KiB
Java
package net.minecraft.server;
|
|
|
|
public class ItemMinecart extends Item {
|
|
|
|
public int a;
|
|
|
|
public ItemMinecart(int i, int j) {
|
|
super(i);
|
|
this.maxStackSize = 1;
|
|
this.a = j;
|
|
}
|
|
|
|
public boolean interactWith(ItemStack itemstack, EntityHuman entityhuman, World world, int i, int j, int k, int l) {
|
|
int i1 = world.getTypeId(i, j, k);
|
|
|
|
if (BlockMinecartTrack.d(i1)) {
|
|
if (!world.isStatic) {
|
|
// CraftBukkit start - Minecarts
|
|
org.bukkit.event.player.PlayerInteractEvent event = org.bukkit.craftbukkit.event.CraftEventFactory.callPlayerInteractEvent(entityhuman, org.bukkit.event.block.Action.RIGHT_CLICK_BLOCK, i, j, k, l, itemstack);
|
|
|
|
if (event.isCancelled()) {
|
|
return false;
|
|
}
|
|
// CraftBukkit end
|
|
|
|
world.addEntity(new EntityMinecart(world, (double) ((float) i + 0.5F), (double) ((float) j + 0.5F), (double) ((float) k + 0.5F), this.a));
|
|
}
|
|
|
|
--itemstack.count;
|
|
return true;
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
}
|