13
0
geforkt von Mirrors/Paper

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)
Dieser Commit ist enthalten in:
riking 2013-03-25 17:11:16 -07:00
Ursprung 3c02fb02a1
Commit 45d3e2514d

Datei anzeigen

@ -125,7 +125,7 @@ public class ContainerEnchantTable extends Container {
// CraftBukkit start
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);
event.setCancelled(!itemstack.w())
event.setCancelled(!itemstack.w());
this.world.getServer().getPluginManager().callEvent(event);
if (event.isCancelled()) {