From 9b09bd255c4ff29dc9eb802dc536357280ab5a2d Mon Sep 17 00:00:00 2001 From: UbitUmarov Date: Mon, 1 Jun 2020 21:31:18 +0100 Subject: [PATCH] change osNpcSaveAppearance to save huds by default like before, so its coerent with past and the other save app methods --- .../Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs index bff5028147..5e6271c8a7 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs @@ -3026,7 +3026,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api public LSL_Key osNpcSaveAppearance(LSL_Key npc, LSL_String notecard) { - return NpcSaveAppearance(npc, notecard, true); + return NpcSaveAppearance(npc, notecard, false); } public LSL_Key osNpcSaveAppearance(LSL_Key npc, LSL_String notecard, LSL_Integer includeHuds)