diff options
author | Diva Canto | 2010-08-16 11:39:46 -0700 |
---|---|---|
committer | Diva Canto | 2010-08-16 11:39:46 -0700 |
commit | a8b80ef800e78d9fa321bc2388b4d8336f454b1d (patch) | |
tree | 9fc791fddb9ec3cb8782aa0110e02039ce92ee8f /OpenSim/Region | |
parent | Work on TeleportStart: renamed method from TeleportLocationStart to TeleportS... (diff) | |
download | opensim-SC-a8b80ef800e78d9fa321bc2388b4d8336f454b1d.zip opensim-SC-a8b80ef800e78d9fa321bc2388b4d8336f454b1d.tar.gz opensim-SC-a8b80ef800e78d9fa321bc2388b4d8336f454b1d.tar.bz2 opensim-SC-a8b80ef800e78d9fa321bc2388b4d8336f454b1d.tar.xz |
Added SendTeleportProgress to IClientAPI. Ya know what that means... 8 files affected.
Diffstat (limited to '')
3 files changed, 12 insertions, 0 deletions
diff --git a/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs b/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs index 3f5aa46..268612e 100644 --- a/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs +++ b/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs | |||
@@ -524,6 +524,10 @@ namespace OpenSim.Region.Examples.SimpleModule | |||
524 | { | 524 | { |
525 | } | 525 | } |
526 | 526 | ||
527 | public virtual void SendTeleportProgress(uint flags, string message) | ||
528 | { | ||
529 | } | ||
530 | |||
527 | public virtual void SendMoneyBalance(UUID transaction, bool success, byte[] description, int balance) | 531 | public virtual void SendMoneyBalance(UUID transaction, bool success, byte[] description, int balance) |
528 | { | 532 | { |
529 | } | 533 | } |
diff --git a/OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs b/OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs index 19bb002..6793ef6 100644 --- a/OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs +++ b/OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs | |||
@@ -1040,6 +1040,10 @@ namespace OpenSim.Region.OptionalModules.Agent.InternetRelayClientView.Server | |||
1040 | 1040 | ||
1041 | } | 1041 | } |
1042 | 1042 | ||
1043 | public void SendTeleportProgress(uint flags, string message) | ||
1044 | { | ||
1045 | } | ||
1046 | |||
1043 | public void SendMoneyBalance(UUID transaction, bool success, byte[] description, int balance) | 1047 | public void SendMoneyBalance(UUID transaction, bool success, byte[] description, int balance) |
1044 | { | 1048 | { |
1045 | 1049 | ||
diff --git a/OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs b/OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs index 944bac6..fae12b6 100644 --- a/OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs +++ b/OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs | |||
@@ -615,6 +615,10 @@ namespace OpenSim.Region.OptionalModules.World.NPC | |||
615 | { | 615 | { |
616 | } | 616 | } |
617 | 617 | ||
618 | public virtual void SendTeleportProgress(uint flags, string message) | ||
619 | { | ||
620 | } | ||
621 | |||
618 | public virtual void SendMoneyBalance(UUID transaction, bool success, byte[] description, int balance) | 622 | public virtual void SendMoneyBalance(UUID transaction, bool success, byte[] description, int balance) |
619 | { | 623 | { |
620 | } | 624 | } |