diff options
author | David Walter Seikel | 2014-05-16 07:05:12 +1000 |
---|---|---|
committer | David Walter Seikel | 2014-05-16 07:05:12 +1000 |
commit | eeb63e2edc93099ee3b8970720896f8139cd1ff8 (patch) | |
tree | 76d2a5b38006b35b53c2308d6b9ad67de163fc99 | |
parent | Comment out list parsing debugs, seems to be working fine now. (diff) | |
download | SledjHamr-eeb63e2edc93099ee3b8970720896f8139cd1ff8.zip SledjHamr-eeb63e2edc93099ee3b8970720896f8139cd1ff8.tar.gz SledjHamr-eeb63e2edc93099ee3b8970720896f8139cd1ff8.tar.bz2 SledjHamr-eeb63e2edc93099ee3b8970720896f8139cd1ff8.tar.xz |
Output script name from LuaSL msg() funciton.
-rw-r--r-- | lib/LSL.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/LSL.lua b/lib/LSL.lua index 98444cc..39676e0 100644 --- a/lib/LSL.lua +++ b/lib/LSL.lua | |||
@@ -74,7 +74,7 @@ function print_table(table, space) | |||
74 | end | 74 | end |
75 | 75 | ||
76 | function msg(...) | 76 | function msg(...) |
77 | print(SID, ...) -- The comma adds a tab, fancy that. B-) | 77 | print(SID, scriptName, ...) -- The comma adds a tab, fancy that. B-) |
78 | end | 78 | end |
79 | 79 | ||
80 | 80 | ||