From 08f654cf949a395c1745b779687469870f3d40ab Mon Sep 17 00:00:00 2001 From: rubenwardy Date: Tue, 17 Apr 2018 22:10:40 +0100 Subject: [PATCH] Remove debug prints Fixes #57 --- api.lua | 4 ---- 1 file changed, 4 deletions(-) diff --git a/api.lua b/api.lua index 9a2ec0c..17d9e09 100644 --- a/api.lua +++ b/api.lua @@ -67,8 +67,6 @@ local function convert_data() awards.players[name] = data end - - print(dump(awards.players)) end function awards.load() @@ -162,7 +160,6 @@ function awards.register_trigger(tname, tdef) assert(player and player.is_player and player:is_player()) local name = player:get_player_name() local data = awards.player(name) - print(dump(data)) -- Increment counter local currentVal = (data[tname] or 0) + 1 @@ -225,7 +222,6 @@ function awards.register_trigger(tname, tdef) assert(player and player.is_player and player:is_player() and key) local name = player:get_player_name() local data = awards.player(name) - print(dump(data)) -- Increment counter data[tname] = data[tname] or {}