aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/lib
diff options
context:
space:
mode:
authorDavid Walter Seikel2014-05-14 16:19:00 +1000
committerDavid Walter Seikel2014-05-14 16:19:00 +1000
commita9c6394c4332c6cc023fca1a31e29383a7d68e72 (patch)
treeeb65ada17b8ed625e1a207f2897062ae4844c8fb /lib
parentImplement faked llGetLinkNumber() and llMessageLinked(). (diff)
downloadSledjHamr-a9c6394c4332c6cc023fca1a31e29383a7d68e72.zip
SledjHamr-a9c6394c4332c6cc023fca1a31e29383a7d68e72.tar.gz
SledjHamr-a9c6394c4332c6cc023fca1a31e29383a7d68e72.tar.bz2
SledjHamr-a9c6394c4332c6cc023fca1a31e29383a7d68e72.tar.xz
Shut up some excess debugs.
Diffstat (limited to 'lib')
-rw-r--r--lib/LSL.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/LSL.lua b/lib/LSL.lua
index 092c3d9..948f22d 100644
--- a/lib/LSL.lua
+++ b/lib/LSL.lua
@@ -743,7 +743,7 @@ function LSL.stateChange(x)
743 if nil ~= currentState.state_exit then 743 if nil ~= currentState.state_exit then
744 currentState.state_exit(); 744 currentState.state_exit();
745 end 745 end
746 msg("LSL.Lua: State change on " .. scriptName) 746-- msg("LSL.Lua: State change on " .. scriptName)
747 currentState = x; 747 currentState = x;
748 --[[ Never return to the current states event handler. In theory. lol 748 --[[ Never return to the current states event handler. In theory. lol
749 Notably, it's not actually legal to do a state change from a function, only from handlers. 749 Notably, it's not actually legal to do a state change from a function, only from handlers.
@@ -774,7 +774,7 @@ function LSL.mainLoop(sid, name, x)
774 774
775 LSL.stateChange(x); 775 LSL.stateChange(x);
776 waitAndProcess(false) 776 waitAndProcess(false)
777 msg("LSL.Lua: Script quitting " .. scriptName) 777-- msg("LSL.Lua: Script quitting " .. scriptName)
778end 778end
779 779
780function waitAndProcess(returnWanted) 780function waitAndProcess(returnWanted)