From 1cbef0b9084bce0816c7ef471b3b58d1dbf9de7c Mon Sep 17 00:00:00 2001 From: Justin Clarke Casey Date: Mon, 18 Feb 2008 11:14:53 +0000 Subject: Patch from Michael Osias IBM (jimbo2120) In his own words: If a prim becomes a listener or remote channel and the script is deleted, it cannot become a listener or channel again with a new script. This patch fixes that. --- OpenSim/Region/Environment/Interfaces/IWorldComm.cs | 1 + OpenSim/Region/Environment/Interfaces/IXMLRPC.cs | 1 + 2 files changed, 2 insertions(+) (limited to 'OpenSim/Region/Environment/Interfaces') diff --git a/OpenSim/Region/Environment/Interfaces/IWorldComm.cs b/OpenSim/Region/Environment/Interfaces/IWorldComm.cs index d8811c6..7567bb2 100644 --- a/OpenSim/Region/Environment/Interfaces/IWorldComm.cs +++ b/OpenSim/Region/Environment/Interfaces/IWorldComm.cs @@ -40,5 +40,6 @@ namespace OpenSim.Region.Environment.Interfaces ListenerInfo GetNextMessage(); void ListenControl(int handle, int active); void ListenRemove(int handle); + void DeleteListener(LLUUID itemID); } } \ No newline at end of file diff --git a/OpenSim/Region/Environment/Interfaces/IXMLRPC.cs b/OpenSim/Region/Environment/Interfaces/IXMLRPC.cs index 02b74cb..82b692d 100644 --- a/OpenSim/Region/Environment/Interfaces/IXMLRPC.cs +++ b/OpenSim/Region/Environment/Interfaces/IXMLRPC.cs @@ -39,5 +39,6 @@ namespace OpenSim.Region.Environment.Interfaces RPCRequestInfo GetNextRequest(); void RemoteDataReply(string channel, string message_id, string sdata, int idata); bool IsEnabled(); + void DeleteChannel(LLUUID itemID); } } \ No newline at end of file -- cgit v1.1