Remove prints

This commit is contained in:
raymoo 2016-02-13 18:27:44 -08:00
parent 7a9cf6bae9
commit d372179cb4
2 changed files with 1 additions and 2 deletions

View File

@ -144,7 +144,7 @@ function pd_methods.learn(self, name)
-- Decrement the remaining deps for each child
for i, child in ipairs(children) do
local new_rem = self.remaining_deps[child] - 1
print(child, new_rem)
-- If the player learned it out of order, don't put it as
-- available.
if new_rem == 0 and not self:knows(child) then

View File

@ -24,7 +24,6 @@ local infos = {
local function build_formspec()
local formspec = "size[8,8]"
print(dump(data.available))
local nodes = {}
for k in pairs(data.learned) do