Parcourir la source

Remove stock requirement from Meido

The StockNo property is not used anymore and is just leftovers from the
previous usage of stock no for calling maids.
habeebweeb il y a 1 an
Parent
commit
0667a046e9
1 fichiers modifiés avec 2 ajouts et 5 suppressions
  1. 2 5
      src/MeidoPhotoStudio.Plugin/Meido/Meido.cs

+ 2 - 5
src/MeidoPhotoStudio.Plugin/Meido/Meido.cs

@@ -47,10 +47,9 @@ public class Meido
     private float[] blendSetValueBackup;
     private bool freeLook;
 
-    public Meido(int stockMaidIndex)
+    public Meido(Maid maid)
     {
-        StockNo = stockMaidIndex;
-        Maid = GameMain.Instance.CharacterMgr.GetStockMaid(stockMaidIndex);
+        Maid = maid;
 
         IKManager = new(this);
         IKManager.SelectMaid += (_, args) =>
@@ -96,8 +95,6 @@ public class Meido
 
     public bool Loading { get; private set; }
 
-    public int StockNo { get; }
-
     public Maid Maid { get; }
 
     public MeidoDragPointManager IKManager { get; }