diff options
author | Justin Clarke Casey | 2008-09-29 15:09:35 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-09-29 15:09:35 +0000 |
commit | e768602681178d8a736d2a1ceb37ff63bf7dd15c (patch) | |
tree | 2a787672c74a70c127e579802bf51ae8ed417389 /OpenSim/Region/Environment/Scenes/Scene.cs | |
parent | * Move existing inventory module into a 'Transfer' namespace, since that is t... (diff) | |
download | opensim-SC_OLD-e768602681178d8a736d2a1ceb37ff63bf7dd15c.zip opensim-SC_OLD-e768602681178d8a736d2a1ceb37ff63bf7dd15c.tar.gz opensim-SC_OLD-e768602681178d8a736d2a1ceb37ff63bf7dd15c.tar.bz2 opensim-SC_OLD-e768602681178d8a736d2a1ceb37ff63bf7dd15c.tar.xz |
* refactor: Rename InventoryModule to InventoryTransferModule
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/Scene.cs')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/Scene.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/Environment/Scenes/Scene.cs b/OpenSim/Region/Environment/Scenes/Scene.cs index ceec7bc..42e9c02 100644 --- a/OpenSim/Region/Environment/Scenes/Scene.cs +++ b/OpenSim/Region/Environment/Scenes/Scene.cs | |||
@@ -4022,7 +4022,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
4022 | 4022 | ||
4023 | public void SetRootAgentScene(UUID agentID) | 4023 | public void SetRootAgentScene(UUID agentID) |
4024 | { | 4024 | { |
4025 | IInventoryModule inv = RequestModuleInterface<IInventoryModule>(); | 4025 | IInventoryTransferModule inv = RequestModuleInterface<IInventoryTransferModule>(); |
4026 | if (inv == null) | 4026 | if (inv == null) |
4027 | return; | 4027 | return; |
4028 | 4028 | ||
@@ -4031,7 +4031,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
4031 | 4031 | ||
4032 | public bool NeedSceneCacheClear(UUID agentID) | 4032 | public bool NeedSceneCacheClear(UUID agentID) |
4033 | { | 4033 | { |
4034 | IInventoryModule inv = RequestModuleInterface<IInventoryModule>(); | 4034 | IInventoryTransferModule inv = RequestModuleInterface<IInventoryTransferModule>(); |
4035 | if (inv == null) | 4035 | if (inv == null) |
4036 | return true; | 4036 | return true; |
4037 | 4037 | ||