diff options
author | David Walter Seikel | 2014-03-30 04:17:22 +1000 |
---|---|---|
committer | David Walter Seikel | 2014-03-30 04:17:22 +1000 |
commit | 74740d6de64e9d071db0bf5b7d9ad6a6133c88cc (patch) | |
tree | 8502b03d82640fef10ebac99edfabbc8def0dad2 | |
parent | Don't print module contents, since that's the entire global space. (diff) | |
download | SledjHamr-74740d6de64e9d071db0bf5b7d9ad6a6133c88cc.zip SledjHamr-74740d6de64e9d071db0bf5b7d9ad6a6133c88cc.tar.gz SledjHamr-74740d6de64e9d071db0bf5b7d9ad6a6133c88cc.tar.bz2 SledjHamr-74740d6de64e9d071db0bf5b7d9ad6a6133c88cc.tar.xz |
Default Thing name is no longer an invalid index.
Diffstat (limited to '')
-rw-r--r-- | ClientHamr/GuiLua/skang.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ClientHamr/GuiLua/skang.lua b/ClientHamr/GuiLua/skang.lua index 99a19d3..33ccc79 100644 --- a/ClientHamr/GuiLua/skang.lua +++ b/ClientHamr/GuiLua/skang.lua | |||
@@ -386,7 +386,7 @@ What about userdata? We could hijack the type() function, and dig deeper if it' | |||
386 | -- required - "boolean" to say if this thing is required. TODO - Maybe fold this into types somehow, or acl? | 386 | -- required - "boolean" to say if this thing is required. TODO - Maybe fold this into types somehow, or acl? |
387 | -- acl - Access Control List defining security restrains. | 387 | -- acl - Access Control List defining security restrains. |
388 | -- boss - the Thing or person that owns this Thing, otherwise it is self owned. | 388 | -- boss - the Thing or person that owns this Thing, otherwise it is self owned. |
389 | Thing.names = {'?'} | 389 | Thing.names = {'unknown'} |
390 | Thing.help = 'No description supplied.' | 390 | Thing.help = 'No description supplied.' |
391 | Thing.default = '' | 391 | Thing.default = '' |
392 | Thing.types = {'string'} | 392 | Thing.types = {'string'} |