aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/IClientAPI.cs
diff options
context:
space:
mode:
authorTeravus Ovares2008-03-03 08:30:36 +0000
committerTeravus Ovares2008-03-03 08:30:36 +0000
commitfe49c96ee0db0974a91b9b175ac1b00aef035797 (patch)
tree27fb1de9eea228d2e89e1c5b1c83cca8577b3bd9 /OpenSim/Framework/IClientAPI.cs
parent* Doh, forgot one license header (diff)
downloadopensim-SC_OLD-fe49c96ee0db0974a91b9b175ac1b00aef035797.zip
opensim-SC_OLD-fe49c96ee0db0974a91b9b175ac1b00aef035797.tar.gz
opensim-SC_OLD-fe49c96ee0db0974a91b9b175ac1b00aef035797.tar.bz2
opensim-SC_OLD-fe49c96ee0db0974a91b9b175ac1b00aef035797.tar.xz
* Applying Ahzz's profile patch. Thanks Ahzz!
* Fixed a few bugs in the patch that are sim crashers. * There's still a bug in mySQL mode/ grid mode where the main userprofile text doesn't save.
Diffstat (limited to 'OpenSim/Framework/IClientAPI.cs')
-rw-r--r--OpenSim/Framework/IClientAPI.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs
index 511bbad..5001f00 100644
--- a/OpenSim/Framework/IClientAPI.cs
+++ b/OpenSim/Framework/IClientAPI.cs
@@ -264,6 +264,8 @@ namespace OpenSim.Framework
264 264
265 public delegate void RequestAvatarProperties(IClientAPI remoteClient, LLUUID avatarID); 265 public delegate void RequestAvatarProperties(IClientAPI remoteClient, LLUUID avatarID);
266 266
267 public delegate void UpdateAvatarProperties(IClientAPI remoteClient, UserProfileData ProfileData);
268
267 public delegate void SetAlwaysRun(IClientAPI remoteClient, bool SetAlwaysRun); 269 public delegate void SetAlwaysRun(IClientAPI remoteClient, bool SetAlwaysRun);
268 270
269 public delegate void GenericCall2(); 271 public delegate void GenericCall2();
@@ -530,6 +532,7 @@ namespace OpenSim.Framework
530 event MoneyTransferRequest OnMoneyTransferRequest; 532 event MoneyTransferRequest OnMoneyTransferRequest;
531 533
532 event MoneyBalanceRequest OnMoneyBalanceRequest; 534 event MoneyBalanceRequest OnMoneyBalanceRequest;
535 event UpdateAvatarProperties OnUpdateAvatarProperties;
533 536
534 537
535 LLVector3 StartPos { get; set; } 538 LLVector3 StartPos { get; set; }