From 95735090d5ce91a6efcd6f0cca16a0a375cc2dc8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ruben=20M=C3=BCller?= Date: Sun, 7 Dec 2014 19:41:22 +0100 Subject: [PATCH] Fix item cost --- src/game.coffee | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/game.coffee b/src/game.coffee index 7fbfba9..ece9e33 100644 --- a/src/game.coffee +++ b/src/game.coffee @@ -158,7 +158,7 @@ app.game = createMiner: -> if @currentSelectedTile and !@currentSelectedTile.entity - if @checkResource('stardust', 30, true) + if @checkResource('lubinit', 10, true) @currentSelectedTile.entity = new Miner else @speechbubble.say 'nores' @@ -168,7 +168,7 @@ app.game = createSilo: -> if @currentSelectedTile if @checkPosition(@currentSelectedTile) - if @checkResource('stardust', 20, true) + if @checkResource('dirt', 10, true) @currentSelectedTile.entity = new Silo else @speechbubble.say 'nores'