Skip to content

Commit

Permalink
Release v1.3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
IAmBatby committed Aug 17, 2024
1 parent 820ff7e commit a0a1464
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions LethalLevelLoader/Loaders/DungeonLoader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -106,14 +106,14 @@ internal static void PatchFireEscapes(DungeonGenerator dungeonGenerator, Extende
foreach (EntranceTeleport entranceTeleport in entranceTeleports)
{
entranceTeleport.entranceId = entranceTeleports.IndexOf(entranceTeleport);
entranceTeleport.dungeonFlowId = extendedDungeonFlow.DungeonID; //I'm pretty sure this is fine but this would be something to check if stuff goes weird.
//entranceTeleport.dungeonFlowId = extendedDungeonFlow.DungeonID; //I'm pretty sure this is fine but this would be something to check if stuff goes weird.
}

debugString += "EntranceTeleport's Found, " + extendedLevel.NumberlessPlanetName + " Contains " + (entranceTeleports.Count) + " Entrances! ( " + (entranceTeleports.Count - 1) + " Fire Escapes) " + "\n";
debugString += "Main Entrance: " + entranceTeleports[0].gameObject.name + " (Entrance ID: " + entranceTeleports[0].entranceId + ")" + " (Dungeon ID: " + entranceTeleports[0].dungeonFlowId + ")" + "\n";
debugString += "Main Entrance: " + entranceTeleports[0].gameObject.name + " (Entrance ID: " + entranceTeleports[0].entranceId + ")" + "\n";
foreach (EntranceTeleport entranceTeleport in entranceTeleports)
if (entranceTeleport.entranceId != 0)
debugString += "Alternate Entrance: " + entranceTeleport.gameObject.name + " (Entrance ID: " + entranceTeleport.entranceId + ")" + " (Dungeon ID: " + entranceTeleport.dungeonFlowId + ")" + "\n";
debugString += "Alternate Entrance: " + entranceTeleport.gameObject.name + " (Entrance ID: " + entranceTeleport.entranceId + ")" + "\n";

foreach (GlobalPropSettings globalPropSettings in dungeonGenerator.DungeonFlow.GlobalProps)
if (globalPropSettings.ID == 1231)
Expand Down
2 changes: 1 addition & 1 deletion LethalLevelLoader/Plugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public class Plugin : BaseUnityPlugin
{
public const string ModGUID = "imabatby.lethallevelloader";
public const string ModName = "LethalLevelLoader";
public const string ModVersion = "1.3.8";
public const string ModVersion = "1.3.9";

internal static Plugin Instance;

Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"website_url": "https://github.com/IAmBatby/LethalLevelLoader",
"description": "A Custom API to support the manual and dynamic integration of all forms of custom content in Lethal Company. (v56 Compatible)",
"dependencies": [
"Evaisa-FixPluginTypesSerialization-1.1.1",
"MaxWasUnavailable-LethalModDataLib-1.2.2",
"Evaisa-FixPluginTypesSerialization-1.1.1",
"BepInEx-BepInExPack-5.4.2100"
]
}

0 comments on commit a0a1464

Please sign in to comment.