aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes/SceneExternalChecks.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/SceneExternalChecks.cs')
-rw-r--r--OpenSim/Region/Environment/Scenes/SceneExternalChecks.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/Environment/Scenes/SceneExternalChecks.cs b/OpenSim/Region/Environment/Scenes/SceneExternalChecks.cs
index f8d041a..c5bbcdd 100644
--- a/OpenSim/Region/Environment/Scenes/SceneExternalChecks.cs
+++ b/OpenSim/Region/Environment/Scenes/SceneExternalChecks.cs
@@ -1070,7 +1070,7 @@ namespace OpenSim.Region.Environment.Scenes
1070 1070
1071 #endregion 1071 #endregion
1072 1072
1073 public delegate bool CanCreateInventory(uint invType, UUID objectID, UUID userID); 1073 public delegate bool CanCreateInventory(int invType, UUID objectID, UUID userID);
1074 private List<CanCreateInventory> CanCreateInventoryCheckFunctions = new List<CanCreateInventory>(); 1074 private List<CanCreateInventory> CanCreateInventoryCheckFunctions = new List<CanCreateInventory>();
1075 1075
1076 public void addCheckCanCreateInventory(CanCreateInventory delegateFunc) 1076 public void addCheckCanCreateInventory(CanCreateInventory delegateFunc)
@@ -1085,7 +1085,7 @@ namespace OpenSim.Region.Environment.Scenes
1085 CanCreateInventoryCheckFunctions.Remove(delegateFunc); 1085 CanCreateInventoryCheckFunctions.Remove(delegateFunc);
1086 } 1086 }
1087 1087
1088 public bool ExternalChecksCanCreateInventory(uint invType, UUID objectID, UUID userID) 1088 public bool ExternalChecksCanCreateInventory(int invType, UUID objectID, UUID userID)
1089 { 1089 {
1090 foreach (CanCreateInventory check in CanCreateInventoryCheckFunctions) 1090 foreach (CanCreateInventory check in CanCreateInventoryCheckFunctions)
1091 { 1091 {