summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrubenwardy <rw@rubenwardy.com>2018-04-06 22:12:56 +0100
committerGitHub <noreply@github.com>2018-04-06 22:12:56 +0100
commit3fc12eb68947f48cee5f3b47f4212e1f7d1d1efc (patch)
tree748be881156fdd0e7c5d29d21d91fc8dd8880a24
parent98fca7914bb8aea3b3bcaf37b5a7d4d281b78492 (diff)
Update README.md
-rw-r--r--README.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/README.md b/README.md
index d19d36e..c2ac1c4 100644
--- a/README.md
+++ b/README.md
@@ -30,7 +30,8 @@ awards.register_award("mymod:myaward", {
-- see specific docs on the trigger to see what else goes here
},
- on_unlock = function(name, awards_def) end,
+ -- Callback. award_def is this table (plus some additional methods/members added by register_award)
+ on_unlock = function(name, award_def) end,
})
```