From 270a2c840b38ed4da7aa5a84b26e479d68185f85 Mon Sep 17 00:00:00 2001 From: thatsIch Date: Sun, 21 Sep 2014 02:09:44 +0200 Subject: [PATCH] Typo Craftinb --- me/cache/CraftingGridCache.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/me/cache/CraftingGridCache.java b/me/cache/CraftingGridCache.java index 63de1f2d3..fd2bd626c 100644 --- a/me/cache/CraftingGridCache.java +++ b/me/cache/CraftingGridCache.java @@ -543,7 +543,7 @@ public class CraftingGridCache implements ICraftingGrid, ICraftingProviderHelper public Future beginCraftingJob(World world, IGrid grid, BaseActionSource actionSrc, IAEItemStack slotItem, ICraftingCallback cb) { if ( world == null || grid == null || actionSrc == null || slotItem == null ) - throw new RuntimeException( "Invalid Craftinb Job Request" ); + throw new RuntimeException( "Invalid Crafting Job Request" ); CraftingJob cj = new CraftingJob( world, grid, actionSrc, slotItem, cb ); return craftingPool.submit( cj, (ICraftingJob) cj );