add girl skin type change

note: need to delete old database because im moving skin to different item type

database located in Config/Database/Miku.db
This commit is contained in:
Naruse
2026-04-27 23:18:08 +08:00
parent 16d1413cd8
commit 5f92f2c116
6 changed files with 49 additions and 11 deletions

View File

@@ -63,6 +63,7 @@ public class PacketNtfCallScript : BasePacket
var extraSync = new NtfSyncPlayer();
foreach (var item in inventory.Items.Values) extraSync.Items.Add(item.ToProto());
foreach (var skin in inventory.Skins.Values) extraSync.Items.Add(skin.ToProto());
foreach (var weapon in inventory.Weapons.Values) extraSync.Items.Add(weapon.ToProto());
proto.ExtraSync = extraSync;
SetData(proto);