diff options
author | David Walter Seikel | 2014-05-14 16:19:00 +1000 |
---|---|---|
committer | David Walter Seikel | 2014-05-14 16:19:00 +1000 |
commit | a9c6394c4332c6cc023fca1a31e29383a7d68e72 (patch) | |
tree | eb65ada17b8ed625e1a207f2897062ae4844c8fb /src/LuaSL | |
parent | Implement faked llGetLinkNumber() and llMessageLinked(). (diff) | |
download | SledjHamr-a9c6394c4332c6cc023fca1a31e29383a7d68e72.zip SledjHamr-a9c6394c4332c6cc023fca1a31e29383a7d68e72.tar.gz SledjHamr-a9c6394c4332c6cc023fca1a31e29383a7d68e72.tar.bz2 SledjHamr-a9c6394c4332c6cc023fca1a31e29383a7d68e72.tar.xz |
Shut up some excess debugs.
Diffstat (limited to 'src/LuaSL')
-rw-r--r-- | src/LuaSL/LuaSL_main.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/LuaSL/LuaSL_main.c b/src/LuaSL/LuaSL_main.c index 017c742..4d589a1 100644 --- a/src/LuaSL/LuaSL_main.c +++ b/src/LuaSL/LuaSL_main.c | |||
@@ -13,7 +13,7 @@ static Eina_Bool _sleep_timer_cb(void *data) | |||
13 | script *script = data; | 13 | script *script = data; |
14 | gameGlobals *ourGlobals = script->game; | 14 | gameGlobals *ourGlobals = script->game; |
15 | 15 | ||
16 | PD("Waking up %s", script->name); | 16 | // PD("Waking up %s", script->name); |
17 | sendToChannel(ourGlobals, script->SID, "return 0.0"); | 17 | sendToChannel(ourGlobals, script->SID, "return 0.0"); |
18 | return ECORE_CALLBACK_CANCEL; | 18 | return ECORE_CALLBACK_CANCEL; |
19 | } | 19 | } |
@@ -49,7 +49,7 @@ static void resetScript(script *victim) | |||
49 | script *me; | 49 | script *me; |
50 | char buf[PATH_MAX]; | 50 | char buf[PATH_MAX]; |
51 | 51 | ||
52 | PD("RESETTING %s", victim->name); | 52 | // PD("RESETTING %s", victim->name); |
53 | sendToChannel(ourGlobals, victim->SID, "quit()"); | 53 | sendToChannel(ourGlobals, victim->SID, "quit()"); |
54 | 54 | ||
55 | eina_hash_del(ourGlobals->scripts, victim->SID, NULL); | 55 | eina_hash_del(ourGlobals->scripts, victim->SID, NULL); |
@@ -111,7 +111,7 @@ void scriptSendBack(void * data) | |||
111 | sendToChannel(ourGlobals, them->SID, "start()"); | 111 | sendToChannel(ourGlobals, them->SID, "start()"); |
112 | else | 112 | else |
113 | sendToChannel(ourGlobals, them->SID, "stop()"); | 113 | sendToChannel(ourGlobals, them->SID, "stop()"); |
114 | PD("Stopped %s", them->name); | 114 | // PD("Stopped %s", them->name); |
115 | } | 115 | } |
116 | else | 116 | else |
117 | PE("Missing script state in llSetScriptState(%s, )", them->name); | 117 | PE("Missing script state in llSetScriptState(%s, )", them->name); |