diff options
Diffstat (limited to 'OpenSim/Region/OptionalModules')
-rw-r--r-- | OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs | 5 | ||||
-rw-r--r-- | OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs | 3 |
2 files changed, 5 insertions, 3 deletions
diff --git a/OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs b/OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs index febf995..c7b7818 100644 --- a/OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs +++ b/OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs | |||
@@ -60,8 +60,6 @@ namespace OpenSim.Region.OptionalModules.Agent.InternetRelayClientView.Server | |||
60 | 60 | ||
61 | public int PingTimeMS { get { return 0; } } | 61 | public int PingTimeMS { get { return 0; } } |
62 | 62 | ||
63 | public bool SupportObjectAnimations { get; set; } | ||
64 | |||
65 | private string m_username; | 63 | private string m_username; |
66 | private string m_nick; | 64 | private string m_nick; |
67 | 65 | ||
@@ -1782,5 +1780,8 @@ namespace OpenSim.Region.OptionalModules.Agent.InternetRelayClientView.Server | |||
1782 | { | 1780 | { |
1783 | return 0; | 1781 | return 0; |
1784 | } | 1782 | } |
1783 | |||
1784 | public void CheckViewerCaps() { } | ||
1785 | |||
1785 | } | 1786 | } |
1786 | } | 1787 | } |
diff --git a/OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs b/OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs index 0984c60..0758fc9 100644 --- a/OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs +++ b/OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs | |||
@@ -73,7 +73,6 @@ namespace OpenSim.Region.OptionalModules.World.NPC | |||
73 | private UUID m_profileImage = UUID.Zero; | 73 | private UUID m_profileImage = UUID.Zero; |
74 | private string m_born; | 74 | private string m_born; |
75 | public List<uint> SelectedObjects {get; private set;} | 75 | public List<uint> SelectedObjects {get; private set;} |
76 | public bool SupportObjectAnimations { get; set; } | ||
77 | 76 | ||
78 | public NPCAvatar( | 77 | public NPCAvatar( |
79 | string firstname, string lastname, Vector3 position, UUID ownerID, bool senseAsAgent, Scene scene) | 78 | string firstname, string lastname, Vector3 position, UUID ownerID, bool senseAsAgent, Scene scene) |
@@ -1392,5 +1391,7 @@ namespace OpenSim.Region.OptionalModules.World.NPC | |||
1392 | return 0; | 1391 | return 0; |
1393 | } | 1392 | } |
1394 | 1393 | ||
1394 | public void CheckViewerCaps() { } | ||
1395 | |||
1395 | } | 1396 | } |
1396 | } | 1397 | } |