diff options
author | Teravus Ovares | 2008-04-17 19:42:54 +0000 |
---|---|---|
committer | Teravus Ovares | 2008-04-17 19:42:54 +0000 |
commit | dd4deebbcbe07cccf8ce700c29c9884f1f414c85 (patch) | |
tree | e5df5e61c84e800d5d38db3b72209d1bc2764959 /OpenSim/Region/Environment/Scenes/SceneEvents.cs | |
parent | * Acks the first UseCircuitCode packet (diff) | |
download | opensim-SC_OLD-dd4deebbcbe07cccf8ce700c29c9884f1f414c85.zip opensim-SC_OLD-dd4deebbcbe07cccf8ce700c29c9884f1f414c85.tar.gz opensim-SC_OLD-dd4deebbcbe07cccf8ce700c29c9884f1f414c85.tar.bz2 opensim-SC_OLD-dd4deebbcbe07cccf8ce700c29c9884f1f414c85.tar.xz |
* Re-Fixed caps
* This fixes chi11ken's/OpenViewer's libsl cap issue.
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/SceneEvents.cs')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/SceneEvents.cs | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/OpenSim/Region/Environment/Scenes/SceneEvents.cs b/OpenSim/Region/Environment/Scenes/SceneEvents.cs index 89c519e..5cf8ece 100644 --- a/OpenSim/Region/Environment/Scenes/SceneEvents.cs +++ b/OpenSim/Region/Environment/Scenes/SceneEvents.cs | |||
@@ -167,9 +167,9 @@ namespace OpenSim.Region.Environment.Scenes | |||
167 | public int transactiontype; | 167 | public int transactiontype; |
168 | public string description; | 168 | public string description; |
169 | 169 | ||
170 | public MoneyTransferArgs(LLUUID asender, LLUUID areciever, int aamount, int atransactiontype, string adescription) { | 170 | public MoneyTransferArgs(LLUUID asender, LLUUID areceiver, int aamount, int atransactiontype, string adescription) { |
171 | sender = asender; | 171 | sender = asender; |
172 | receiver = areciever; | 172 | receiver = areceiver; |
173 | amount = aamount; | 173 | amount = aamount; |
174 | transactiontype = atransactiontype; | 174 | transactiontype = atransactiontype; |
175 | description = adescription; | 175 | description = adescription; |
@@ -219,7 +219,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
219 | 219 | ||
220 | public event MoneyTransferEvent OnMoneyTransfer; | 220 | public event MoneyTransferEvent OnMoneyTransfer; |
221 | public event LandBuy OnLandBuy; | 221 | public event LandBuy OnLandBuy; |
222 | public event LandBuy OnValidatedLandBuy; | 222 | public event LandBuy OnValidateLandBuy; |
223 | 223 | ||
224 | /* Designated Event Deletage Instances */ | 224 | /* Designated Event Deletage Instances */ |
225 | 225 | ||
@@ -253,7 +253,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
253 | private DeregisterCapsEvent handlerDeregisterCaps = null; // OnDeregisterCaps; | 253 | private DeregisterCapsEvent handlerDeregisterCaps = null; // OnDeregisterCaps; |
254 | private NewInventoryItemUploadComplete handlerNewInventoryItemUpdateComplete = null; | 254 | private NewInventoryItemUploadComplete handlerNewInventoryItemUpdateComplete = null; |
255 | private LandBuy handlerLandBuy = null; | 255 | private LandBuy handlerLandBuy = null; |
256 | private LandBuy handlerValidatedLandBuy = null; | 256 | private LandBuy handlerValidateLandBuy = null; |
257 | 257 | ||
258 | public void TriggerOnScriptChangedEvent(uint localID, uint change) | 258 | public void TriggerOnScriptChangedEvent(uint localID, uint change) |
259 | { | 259 | { |
@@ -526,12 +526,12 @@ namespace OpenSim.Region.Environment.Scenes | |||
526 | handlerLandBuy(sender, e); | 526 | handlerLandBuy(sender, e); |
527 | } | 527 | } |
528 | } | 528 | } |
529 | public void TriggerValidatedLandBuy(Object sender, LandBuyArgs e) | 529 | public void TriggerValidateLandBuy(Object sender, LandBuyArgs e) |
530 | { | 530 | { |
531 | handlerValidatedLandBuy = OnValidatedLandBuy; | 531 | handlerValidateLandBuy = OnValidateLandBuy; |
532 | if (handlerValidatedLandBuy != null) | 532 | if (handlerValidateLandBuy != null) |
533 | { | 533 | { |
534 | handlerValidatedLandBuy(sender, e); | 534 | handlerValidateLandBuy(sender, e); |
535 | } | 535 | } |
536 | } | 536 | } |
537 | } | 537 | } |