diff --git a/me/cache/CraftingGridCache.java b/me/cache/CraftingGridCache.java index 63de1f2d..fd2bd626 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 );