Skip to content

Commit

Permalink
Final fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Witchybun committed Nov 6, 2024
1 parent 99fedee commit ad538cc
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Data/FlipwitchLocations.cs
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ public LocationData()
CreateLocation(490, "WW: Red Wine Chest", "Wine", CHEST),
CreateLocation(491, "WW: Gobliana's Belongings", "DummyGB", QUEST, secondaryCallName: "GoblinModelLuggage"),
CreateLocation(492, "WW: Legs' Business Offer", "Dummy1", QUEST, secondaryCallName: "GoblinBusinessCard"),
CreateLocation(493, "WW: Gobliana's Headshot", "", QUEST, secondaryCallName: "GoblinHeadshot"),
CreateLocation(493, "WW: Gobliana's Headshot", "DummyGHCS", QUEST, secondaryCallName: "GoblinHeadshot"),
CreateLocation(494, "ST: Cabaret Cafe Girls Room Chest", "sc_cabaret_coins", COINCHEST),
CreateLocation(495, "ST: Cabaret Cafe Delicious Milk", "DummyDM", QUEST, secondaryCallName: "DeliciousMilk"),
CreateLocation(496, "ST: Cabaret Cafe Cherry Apartment Key", "DummyCK", QUEST, secondaryCallName: "CherryKey"),
Expand Down Expand Up @@ -374,8 +374,8 @@ public LocationData()

CreateLocation(651, "WW: Genesis' Coin", "gacha_tutorial", GACHA),
CreateLocation(652, "WW: Secret Cave Coin", "ww_double_jump_gacha", GACHA),
CreateLocation(653, "WW: Secret Alcove", "ww_gacha_thorns", GACHA),
CreateLocation(654, "WW: Above Rundown House", "ww_gacha_cowjunction", GACHA),
CreateLocation(653, "WW: Above Rundown House", "ww_gacha_cowjunction", GACHA),
CreateLocation(654, "WW: Secret Alcove", "ww_gacha_thorns", GACHA),
CreateLocation(655, "WW: Post Fight Coin", "ww_goblinqueenexit", GACHA),
CreateLocation(656, "WW: Hidden Spring Room Coin", "ww_gacha_fairy_secret", GACHA),
CreateLocation(657, "WW: Before Great Fairy", "ww_gacha_goblincamp", GACHA),
Expand Down
5 changes: 5 additions & 0 deletions GenericMethods.cs
Original file line number Diff line number Diff line change
Expand Up @@ -274,6 +274,11 @@ public static void SoftlockSparer(string sceneName)
var rewardDropBounce = world.Find("38_RewardDrop").Find("LevelData").Find("Bouncy_Honey (10)");
rewardDropBounce.GetComponent<BouncyHoney>().force = 60;
world.Find("30_DangerDrop").Find("LevelData").Find("Bouncy_Honey (14)").GetComponent<BouncyHoney>().force = 70;
var deepDropBounce = GameObject.Instantiate(rewardDropBounce);
var deepDropSpot = world.Find("11_DeepDrop").Find("LevelData");
deepDropBounce.parent = deepDropSpot;
deepDropBounce.position = new Vector3(-152.485f, -48.395f, 0f);
deepDropBounce.GetComponent<BouncyHoney>().force = 35;
return;
}
}
Expand Down
2 changes: 1 addition & 1 deletion Plugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public class Plugin : BaseUnityPlugin
{
public const string PluginGUID = "com.Albrekka.FlipwitchAP";
public const string PluginName = "FlipwitchAP";
public const string PluginVersion = "0.2.0pre9";
public const string PluginVersion = "0.2.0";
private const string APDisplayInfo = $"Archipelago v{ArchipelagoClient.APVersion}";
public static ArchipelagoClient ArchipelagoClient { get; private set; }
public static bool IsInGame = false;
Expand Down

0 comments on commit ad538cc

Please sign in to comment.