From 79badfa313d8e4d385fb9a5d7222ab7dea094422 Mon Sep 17 00:00:00 2001 From: Laurent Vivier Date: Sun, 25 Sep 2011 14:02:34 +0200 Subject: [PATCH] Fixed typing error --- src/content_craft.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content_craft.cpp b/src/content_craft.cpp index 7275bc7a0..79fd9a786 100644 --- a/src/content_craft.cpp +++ b/src/content_craft.cpp @@ -100,7 +100,7 @@ InventoryItem *craft_get_result(InventoryItem **items) if(checkItemCombination(items, specs)) { - return new MaterialItem(CONTENT_JACKO, 22); + return new MaterialItem(CONTENT_JACKO, 2); } }