mirror of
https://github.com/mm201/pkmn-classic-framework.git
synced 2026-08-24 19:24:11 -05:00
Forgot to turn off fake opponents!
This commit is contained in:
@@ -483,7 +483,7 @@ namespace PkmnFoundations.GTS
|
||||
byte rank = data[0x00];
|
||||
byte roomNum = data[0x01];
|
||||
|
||||
//BattleTowerRecord4[] opponents = DataAbstract.Instance.BattleTowerGetOpponents4(pid, rank, roomNum);
|
||||
BattleTowerRecord4[] opponents = DataAbstract.Instance.BattleTowerGetOpponents4(pid, rank, roomNum);
|
||||
BattleTowerProfile4[] leaders = DataAbstract.Instance.BattleTowerGetLeaders4(rank, roomNum);
|
||||
BattleTowerRecord4[] fakeOpponents = FakeOpponentGenerator4.GenerateFakeOpponents(7);
|
||||
|
||||
@@ -492,11 +492,10 @@ namespace PkmnFoundations.GTS
|
||||
response.Write(record.Save(), 0, 228);
|
||||
}
|
||||
|
||||
/*
|
||||
foreach (BattleTowerRecord4 record in opponents)
|
||||
{
|
||||
response.Write(record.Save(), 0, 228);
|
||||
}*/
|
||||
}
|
||||
|
||||
foreach (BattleTowerProfile4 leader in leaders)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user