diff options
Diffstat (limited to 'OpenSim/Region/Examples')
-rw-r--r-- | OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs | 24 |
1 files changed, 14 insertions, 10 deletions
diff --git a/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs b/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs index 1dfa1b1..fb29353 100644 --- a/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs +++ b/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs | |||
@@ -351,7 +351,11 @@ namespace OpenSim.Region.Examples.SimpleModule | |||
351 | get { return true; } | 351 | get { return true; } |
352 | set { } | 352 | set { } |
353 | } | 353 | } |
354 | 354 | public bool IsLoggingOut | |
355 | { | ||
356 | get { return false; } | ||
357 | set { } | ||
358 | } | ||
355 | public UUID ActiveGroupId | 359 | public UUID ActiveGroupId |
356 | { | 360 | { |
357 | get { return UUID.Zero; } | 361 | get { return UUID.Zero; } |
@@ -1133,15 +1137,15 @@ namespace OpenSim.Region.Examples.SimpleModule | |||
1133 | } | 1137 | } |
1134 | 1138 | ||
1135 | public void SendGroupTransactionsSummaryDetails(IClientAPI sender,UUID groupID, UUID transactionID, UUID sessionID,int amt) | 1139 | public void SendGroupTransactionsSummaryDetails(IClientAPI sender,UUID groupID, UUID transactionID, UUID sessionID,int amt) |
1136 | { | 1140 | { |
1137 | } | 1141 | } |
1138 | 1142 | ||
1139 | public void SendGroupVoteHistory(UUID groupID, UUID transactionID, GroupVoteHistory[] Votes) | 1143 | public void SendGroupVoteHistory(UUID groupID, UUID transactionID, GroupVoteHistory[] Votes) |
1140 | { | 1144 | { |
1141 | } | 1145 | } |
1142 | 1146 | ||
1143 | public void SendGroupActiveProposals(UUID groupID, UUID transactionID, GroupActiveProposals[] Proposals) | 1147 | public void SendGroupActiveProposals(UUID groupID, UUID transactionID, GroupActiveProposals[] Proposals) |
1144 | { | 1148 | { |
1145 | } | 1149 | } |
1146 | } | 1150 | } |
1147 | } | 1151 | } |