diff options
author | UbitUmarov | 2019-03-23 02:18:32 +0000 |
---|---|---|
committer | UbitUmarov | 2019-03-23 02:18:32 +0000 |
commit | d0052c817486a1691fc4e2e7027ac41240b966aa (patch) | |
tree | 2308b3c6c3bd9dd6da9b18d7cca806cec05341b1 /OpenSim/Region/OptionalModules/Agent | |
parent | oops send flag PrimFlags.InventoryEmpty but do not override others (diff) | |
download | opensim-SC-d0052c817486a1691fc4e2e7027ac41240b966aa.zip opensim-SC-d0052c817486a1691fc4e2e7027ac41240b966aa.tar.gz opensim-SC-d0052c817486a1691fc4e2e7027ac41240b966aa.tar.bz2 opensim-SC-d0052c817486a1691fc4e2e7027ac41240b966aa.tar.xz |
add more test code to make usage od compressed updates etc. Should be disable, but well many things can go wrong.
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs b/OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs index 59ce05a..80baf82 100644 --- a/OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs +++ b/OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs | |||
@@ -699,7 +699,7 @@ namespace OpenSim.Region.OptionalModules.Agent.InternetRelayClientView.Server | |||
699 | public event TeleportCancel OnTeleportCancel; | 699 | public event TeleportCancel OnTeleportCancel; |
700 | public event DeRezObject OnDeRezObject; | 700 | public event DeRezObject OnDeRezObject; |
701 | public event RezRestoreToWorld OnRezRestoreToWorld; | 701 | public event RezRestoreToWorld OnRezRestoreToWorld; |
702 | public event Action<IClientAPI> OnRegionHandShakeReply; | 702 | public event Action<IClientAPI, uint> OnRegionHandShakeReply; |
703 | public event GenericCall1 OnRequestWearables; | 703 | public event GenericCall1 OnRequestWearables; |
704 | public event Action<IClientAPI, bool> OnCompleteMovementToRegion; | 704 | public event Action<IClientAPI, bool> OnCompleteMovementToRegion; |
705 | public event UpdateAgent OnPreAgentUpdate; | 705 | public event UpdateAgent OnPreAgentUpdate; |
@@ -938,7 +938,7 @@ namespace OpenSim.Region.OptionalModules.Agent.InternetRelayClientView.Server | |||
938 | 938 | ||
939 | if (OnRegionHandShakeReply != null) | 939 | if (OnRegionHandShakeReply != null) |
940 | { | 940 | { |
941 | OnRegionHandShakeReply(this); | 941 | OnRegionHandShakeReply(this, 0); |
942 | } | 942 | } |
943 | 943 | ||
944 | if (OnCompleteMovementToRegion != null) | 944 | if (OnCompleteMovementToRegion != null) |