mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-02 04:56:50 +01:00
Add missing semicolon
I should try to compile before I say "this change is okay". I should try to compile before I say "this change is okay". I should try to compile before I say "this change is okay". I should try to compile before I say "this change is okay". for i in range(100)
This commit is contained in:
parent
3c02fb02a1
commit
45d3e2514d
1 changed files with 1 additions and 1 deletions
|
@ -125,7 +125,7 @@ public class ContainerEnchantTable extends Container {
|
||||||
// CraftBukkit start
|
// CraftBukkit start
|
||||||
CraftItemStack item = CraftItemStack.asCraftMirror(itemstack);
|
CraftItemStack item = CraftItemStack.asCraftMirror(itemstack);
|
||||||
PrepareItemEnchantEvent event = new PrepareItemEnchantEvent(player, this.getBukkitView(), this.world.getWorld().getBlockAt(this.x, this.y, this.z), item, this.costs, i);
|
PrepareItemEnchantEvent event = new PrepareItemEnchantEvent(player, this.getBukkitView(), this.world.getWorld().getBlockAt(this.x, this.y, this.z), item, this.costs, i);
|
||||||
event.setCancelled(!itemstack.w())
|
event.setCancelled(!itemstack.w());
|
||||||
this.world.getServer().getPluginManager().callEvent(event);
|
this.world.getServer().getPluginManager().callEvent(event);
|
||||||
|
|
||||||
if (event.isCancelled()) {
|
if (event.isCancelled()) {
|
||||||
|
|
Loading…
Reference in a new issue