diff options
author | Adam Frisby | 2008-04-29 14:04:55 +0000 |
---|---|---|
committer | Adam Frisby | 2008-04-29 14:04:55 +0000 |
commit | 375163a6fece8b3a57c7555246abe8338223a599 (patch) | |
tree | 163001ca96a4b4d08589e9772f78510677d5d0dc /OpenSim/Framework/FriendListItem.cs | |
parent | Patch from Melanie: 0001087: Crash to bash de-linking objects. Thanks Melanie! (diff) | |
download | opensim-SC-375163a6fece8b3a57c7555246abe8338223a599.zip opensim-SC-375163a6fece8b3a57c7555246abe8338223a599.tar.gz opensim-SC-375163a6fece8b3a57c7555246abe8338223a599.tar.bz2 opensim-SC-375163a6fece8b3a57c7555246abe8338223a599.tar.xz |
* Spring cleaning.
* Added new generic "Location" class to handle 2D integer locations. Going to use it to replace all RegionHandle and X,Y coordinate references throughout the entire project. You have been warned.
Diffstat (limited to 'OpenSim/Framework/FriendListItem.cs')
-rw-r--r-- | OpenSim/Framework/FriendListItem.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Framework/FriendListItem.cs b/OpenSim/Framework/FriendListItem.cs index 9220705..d3ca759 100644 --- a/OpenSim/Framework/FriendListItem.cs +++ b/OpenSim/Framework/FriendListItem.cs | |||
@@ -31,15 +31,15 @@ namespace OpenSim.Framework | |||
31 | { | 31 | { |
32 | public class FriendListItem | 32 | public class FriendListItem |
33 | { | 33 | { |
34 | public LLUUID FriendListOwner; | ||
35 | public LLUUID Friend; | 34 | public LLUUID Friend; |
35 | public LLUUID FriendListOwner; | ||
36 | 36 | ||
37 | // These are what the list owner gives the friend permission to do | 37 | // These are what the list owner gives the friend permission to do |
38 | public uint FriendPerms; | ||
39 | 38 | ||
40 | // These are what the friend gives the listowner permission to do | 39 | // These are what the friend gives the listowner permission to do |
41 | public uint FriendListOwnerPerms; | 40 | public uint FriendListOwnerPerms; |
41 | public uint FriendPerms; | ||
42 | 42 | ||
43 | public bool onlinestatus = false; | 43 | public bool onlinestatus = false; |
44 | } | 44 | } |
45 | } | 45 | } \ No newline at end of file |