From 2a16c0d3aa91b4fddff25c08b0196e5fffad0463 Mon Sep 17 00:00:00 2001 From: ChloeConstantine Date: Sat, 17 Dec 2022 13:04:37 -0500 Subject: [PATCH] Update EventSigs.hs Updates to add signature for linkset_data --- 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..e490496 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"), (LLKey,"id")], 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, [],