diff options
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs index 56d7d50..ae4fcbc 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | |||
@@ -9209,6 +9209,9 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
9209 | 9209 | ||
9210 | WithNotecard(assetID, delegate (UUID id, AssetBase a) | 9210 | WithNotecard(assetID, delegate (UUID id, AssetBase a) |
9211 | { | 9211 | { |
9212 | if (a == null) | ||
9213 | return; | ||
9214 | |||
9212 | if (a.Type != 7) | 9215 | if (a.Type != 7) |
9213 | return; | 9216 | return; |
9214 | 9217 | ||
@@ -9283,6 +9286,9 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
9283 | 9286 | ||
9284 | WithNotecard(assetID, delegate (UUID id, AssetBase a) | 9287 | WithNotecard(assetID, delegate (UUID id, AssetBase a) |
9285 | { | 9288 | { |
9289 | if (a == null) | ||
9290 | return; | ||
9291 | |||
9286 | if (a.Type != 7) | 9292 | if (a.Type != 7) |
9287 | return; | 9293 | return; |
9288 | 9294 | ||