From 192dd6e81c02163bc39b45023febad7d54ab15df Mon Sep 17 00:00:00 2001 From: Splizard Date: Mon, 28 Jan 2013 10:21:27 +1300 Subject: [PATCH] Fix syntax error with comma. --- mods/hungry_games/init.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mods/hungry_games/init.lua b/mods/hungry_games/init.lua index 96e18e6..7025dad 100644 --- a/mods/hungry_games/init.lua +++ b/mods/hungry_games/init.lua @@ -57,7 +57,7 @@ chest_item('default:axe_stone', 15, 1) chest_item('default:axe_steel', 20, 1) chest_item('throwing:arrow', 4, 10) chest_item('throwing:arrow_fire', 12, 6) -chest_item('throwing:arrow_teleport' 50, 1) +chest_item('throwing:arrow_teleport', 50, 1) chest_item('throwing:bow_wood', 5, 1) chest_item('throwing:bow_stone', 10, 1) chest_item('throwing:bow_steel', 15, 1) @@ -68,7 +68,7 @@ chest_item('default:sword_steel', 20, 1) chest_item('bread:slice', 3, 1) chest_item('bread:bun', 5, 1) chest_item('bread:bread', 10, 1) -chest_item('snow:snowball' 10, 99) +chest_item('snow:snowball', 10, 99) --crafting items chest_item('default:stick', 8, 10) chest_item('default:steel_ingot', 15, 3)