aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/love
diff options
context:
space:
mode:
authorDavid Walter Seikel2014-05-16 20:07:50 +1000
committerDavid Walter Seikel2014-05-16 20:07:50 +1000
commit46c6f251c09768fc79ed7c40a879f6858be5a6bd (patch)
treebfa7cc2922be7ae45c1d415b1908e560a850a8e0 /src/love
parentImplement llStringLength(). (diff)
downloadSledjHamr-46c6f251c09768fc79ed7c40a879f6858be5a6bd.zip
SledjHamr-46c6f251c09768fc79ed7c40a879f6858be5a6bd.tar.gz
SledjHamr-46c6f251c09768fc79ed7c40a879f6858be5a6bd.tar.bz2
SledjHamr-46c6f251c09768fc79ed7c40a879f6858be5a6bd.tar.xz
Fake llRegionsay().
Diffstat (limited to 'src/love')
-rw-r--r--src/love/love.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/love/love.c b/src/love/love.c
index ee77945..a1ad1f6 100644
--- a/src/love/love.c
+++ b/src/love/love.c
@@ -352,6 +352,11 @@ static Eina_Bool _dataLuaSL(void *data, int type, Ecore_Con_Event_Server_Data *e
352 if (ourGlobals->client) sendBack(ourGlobals->client, SID, command); 352 if (ourGlobals->client) sendBack(ourGlobals->client, SID, command);
353 else PW("No where to send %s", command); 353 else PW("No where to send %s", command);
354 } 354 }
355 else if (0 == strncmp(command, "llRegionSay(", 12))
356 {
357 if (ourGlobals->client) sendBack(ourGlobals->client, SID, command);
358 else PW("No where to send %s", command);
359 }
355 else if (0 == strncmp(command, "llSay(", 6)) 360 else if (0 == strncmp(command, "llSay(", 6))
356 { 361 {
357 if (ourGlobals->client) sendBack(ourGlobals->client, SID, command); 362 if (ourGlobals->client) sendBack(ourGlobals->client, SID, command);