diff options
author | rubenwardy <anjayward@gmail.com> | 2014-05-02 19:11:21 +0100 |
---|---|---|
committer | rubenwardy <anjayward@gmail.com> | 2014-05-02 19:11:21 +0100 |
commit | 8bd3658d9ee363c55225c63f867a8ebf70c44b6e (patch) | |
tree | e540f84f5eca80259ab56f026f937800f8e96bf7 /api.lua | |
parent | 8adf859127a3cf3218811c3e6d9ff4b6a3aff1a8 (diff) |
first word award and bug fixes
Diffstat (limited to 'api.lua')
-rw-r--r-- | api.lua | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -64,6 +64,7 @@ function awards.assertPlayer(playern) awards.tbv(awards.players[playern], "place") awards.tbv(awards.players[playern], "count") awards.tbv(awards.players[playern], "deaths", 0) + awards.tbv(awards.players[playern], "chats", 0) end -- Load files @@ -148,7 +149,7 @@ end -- award - the name of the award to give function awards.give_achievement(name,award) -- Access Player Data - local data=awards.players[name] + local data = awards.players[name] -- Perform checks if not data then |