diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs | 5 | ||||
-rw-r--r-- | OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs b/OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs index 85e3fb3..0b6647d 100644 --- a/OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs +++ b/OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs | |||
@@ -877,6 +877,11 @@ namespace OpenSim.Region.OptionalModules.Agent.InternetRelayClientView.Server | |||
877 | 877 | ||
878 | public void Close() | 878 | public void Close() |
879 | { | 879 | { |
880 | Close(true); | ||
881 | } | ||
882 | |||
883 | public void Close(bool sendStop) | ||
884 | { | ||
880 | Disconnect(); | 885 | Disconnect(); |
881 | } | 886 | } |
882 | 887 | ||
diff --git a/OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs b/OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs index cf2076f..938293f 100644 --- a/OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs +++ b/OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs | |||
@@ -838,6 +838,11 @@ namespace OpenSim.Region.OptionalModules.World.NPC | |||
838 | 838 | ||
839 | public void Close() | 839 | public void Close() |
840 | { | 840 | { |
841 | Close(true); | ||
842 | } | ||
843 | |||
844 | public void Close(bool sendStop) | ||
845 | { | ||
841 | } | 846 | } |
842 | 847 | ||
843 | public void Start() | 848 | public void Start() |