diff options
author | Melanie Thielker | 2008-10-26 19:32:41 +0000 |
---|---|---|
committer | Melanie Thielker | 2008-10-26 19:32:41 +0000 |
commit | f7e44250bf6058a7f232b5555d709787f1a2eb6b (patch) | |
tree | f9197d06761c96d1b47f0b4dd56cef8aca6bf4b5 /OpenSim/Framework | |
parent | Thank you kindly, Idb for a patch that solves: (diff) | |
download | opensim-SC_OLD-f7e44250bf6058a7f232b5555d709787f1a2eb6b.zip opensim-SC_OLD-f7e44250bf6058a7f232b5555d709787f1a2eb6b.tar.gz opensim-SC_OLD-f7e44250bf6058a7f232b5555d709787f1a2eb6b.tar.bz2 opensim-SC_OLD-f7e44250bf6058a7f232b5555d709787f1a2eb6b.tar.xz |
Committing a small fix for EventData along with more plumbing work
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r-- | OpenSim/Framework/EventData.cs | 2 | ||||
-rw-r--r-- | OpenSim/Framework/IClientAPI.cs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Framework/EventData.cs b/OpenSim/Framework/EventData.cs index bbca240..70554d0 100644 --- a/OpenSim/Framework/EventData.cs +++ b/OpenSim/Framework/EventData.cs | |||
@@ -42,7 +42,7 @@ namespace OpenSim.Framework | |||
42 | public string name; | 42 | public string name; |
43 | public string category; | 43 | public string category; |
44 | public string description; | 44 | public string description; |
45 | public DateTime date; | 45 | public string date; |
46 | public uint dateUTC; | 46 | public uint dateUTC; |
47 | public uint duration; | 47 | public uint duration; |
48 | public uint cover; | 48 | public uint cover; |
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs index 471def5..46615cc 100644 --- a/OpenSim/Framework/IClientAPI.cs +++ b/OpenSim/Framework/IClientAPI.cs | |||
@@ -683,7 +683,7 @@ namespace OpenSim.Framework | |||
683 | void SendMoneyBalance(UUID transaction, bool success, byte[] description, int balance); | 683 | void SendMoneyBalance(UUID transaction, bool success, byte[] description, int balance); |
684 | void SendPayPrice(UUID objectID, int[] payPrice); | 684 | void SendPayPrice(UUID objectID, int[] payPrice); |
685 | 685 | ||
686 | void SendAvatarData(ulong regionHandle, string firstName, string lastName, UUID avatarID, uint avatarLocalID, | 686 | void SendAvatarData(ulong regionHandle, string firstName, string lastName, string grouptitle, UUID avatarID, uint avatarLocalID, |
687 | Vector3 Pos, byte[] textureEntry, uint parentID, Quaternion rotation); | 687 | Vector3 Pos, byte[] textureEntry, uint parentID, Quaternion rotation); |
688 | 688 | ||
689 | void SendAvatarTerseUpdate(ulong regionHandle, ushort timeDilation, uint localID, Vector3 position, | 689 | void SendAvatarTerseUpdate(ulong regionHandle, ushort timeDilation, uint localID, Vector3 position, |