1
0
Fork 0

Add support for v80

This commit is contained in:
ivan tkachenko 2026-03-31 06:29:12 +03:00
parent f55e2e8436
commit a71c61b5c7
3 changed files with 5 additions and 1 deletions

View File

@ -2,6 +2,7 @@
## MuzikaGromche 1337.9001.69 ## MuzikaGromche 1337.9001.69
- Added support for v80
- Show real Artist & Song info in the config. - Show real Artist & Song info in the config.
## MuzikaGromche 1337.9001.68 - LocalHost hotfix ## MuzikaGromche 1337.9001.68 - LocalHost hotfix

View File

@ -53,6 +53,9 @@
<Reference Include="Assembly-CSharp" Publicize="true" Private="false"> <Reference Include="Assembly-CSharp" Publicize="true" Private="false">
<HintPath>$(LethalCompanyDir)Lethal Company_Data\Managed\Assembly-CSharp.dll</HintPath> <HintPath>$(LethalCompanyDir)Lethal Company_Data\Managed\Assembly-CSharp.dll</HintPath>
</Reference> </Reference>
<Reference Include="DunGen" Publicize="true" Private="false">
<HintPath>$(LethalCompanyDir)Lethal Company_Data\Managed\DunGen.dll</HintPath>
</Reference>
<Reference Include="Unity.Collections" Private="false"> <Reference Include="Unity.Collections" Private="false">
<HintPath>$(LethalCompanyDir)Lethal Company_Data\Managed\Unity.Collections.dll</HintPath> <HintPath>$(LethalCompanyDir)Lethal Company_Data\Managed\Unity.Collections.dll</HintPath>
</Reference> </Reference>

View File

@ -51,7 +51,7 @@ namespace MuzikaGromche
{ {
if (EnemyIndex is int index) if (EnemyIndex is int index)
{ {
if (__instance.EnemyCannotBeSpawned(index)) if (__instance.InsideEnemyCannotBeSpawned(index, __instance.currentEnemyPower))
{ {
return; return;
} }