From 71f428cb695ffb9a95673ec3f91aa61556e7b250 Mon Sep 17 00:00:00 2001 From: Kurt Date: Wed, 9 Dec 2015 19:18:39 -0800 Subject: [PATCH] Fix party accessing Return current party member counts, no blanks --- Misc/SAV6.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Misc/SAV6.cs b/Misc/SAV6.cs index f6474ea8e..74c2aebe7 100644 --- a/Misc/SAV6.cs +++ b/Misc/SAV6.cs @@ -661,7 +661,7 @@ public PK6[] PartyData { get { - PK6[] data = new PK6[6]; + PK6[] data = new PK6[PartyCount]; for (int i = 0; i < data.Length; i++) data[i] = getPK6Party(Party + PK6.SIZE_PARTY * i); return data;