From f90ab01d44b0d1743f1eeb63219065e2959eab09 Mon Sep 17 00:00:00 2001 From: Mystler Date: Sat, 5 Feb 2022 07:59:58 -0500 Subject: [PATCH] Change to ReadFromFile command per rarified (cherry picked from commit 9e83bf7c8d1454d8d4d67b69080b270cb9cefb7e) --- Sources/Plasma/FeatureLib/pfPython/cyAvatar.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/Plasma/FeatureLib/pfPython/cyAvatar.cpp b/Sources/Plasma/FeatureLib/pfPython/cyAvatar.cpp index c903fe4d..7bd26690 100644 --- a/Sources/Plasma/FeatureLib/pfPython/cyAvatar.cpp +++ b/Sources/Plasma/FeatureLib/pfPython/cyAvatar.cpp @@ -1647,7 +1647,7 @@ bool cyAvatar::LoadClothingFromFile(plFileName filename) if (!filename.StripFileName().IsValid()) filename = plFileName::Join(plFileSystem::GetUserDataPath(), "Avatars", filename); cl->SetClothingFile(filename); - return cl->ReadClothing(); + return cl->ReadFromFile(); } } }