From 57a6d459a7bc79a708ed753d1342edd8d11c0f4d Mon Sep 17 00:00:00 2001 From: ChloeConstantine Date: Sat, 14 Jan 2023 12:26:53 -0500 Subject: [PATCH] Update EventSigs.hs Fixed the even signature from last version I submitted --- lslforge/haskell/src/Language/Lsl/Internal/EventSigs.hs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lslforge/haskell/src/Language/Lsl/Internal/EventSigs.hs b/lslforge/haskell/src/Language/Lsl/Internal/EventSigs.hs index 624e4f2..9a1b915 100644 --- a/lslforge/haskell/src/Language/Lsl/Internal/EventSigs.hs +++ b/lslforge/haskell/src/Language/Lsl/Internal/EventSigs.hs @@ -46,6 +46,8 @@ lslEventDescriptors = [ "raised when a scripted object starts colliding with the ground"), ("link_message", [(LLInteger,"sender_num"), (LLInteger,"num"), (LLString,"str"), (LLKey,"id")], EventDeliveryPrim, [], "raised when a scripted prim receives a link message, sent via llMessageLinked"), + ("linkset_data", [(LLInteger,"action"), (LLString,"name"), (LLString,"value")], EventDeliveryPrim, [], + "raised when the datastore has been modified through a call to one of the llLinksetData functions"), ("listen", [(LLInteger, "channel"), (LLString,"name"), (LLKey,"id"), (LLString,"message")], EventDeliveryScript, [], "raised whenever 'chat' is detected that matches constraints specified via a llListen call"), ("money",[(LLKey,"id"),(LLInteger,"amount")], EventDeliveryPrim, [],