From 9e83bf7c8d1454d8d4d67b69080b270cb9cefb7e 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 --- 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 a5f5f31c..9806a8da 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(); } } }