diff --git a/Starstorm 2/Cores/DamageTypeCore.cs b/Starstorm 2/Cores/DamageTypeCore.cs index 15867ef5..af9efebd 100644 --- a/Starstorm 2/Cores/DamageTypeCore.cs +++ b/Starstorm 2/Cores/DamageTypeCore.cs @@ -50,6 +50,7 @@ public DamageTypeCore() ModdedDamageTypes.GuaranteedFearOnHit = DamageAPI.ReserveDamageType(); ModdedDamageTypes.ErraticGadget = DamageAPI.ReserveDamageType(); ModdedDamageTypes.Root5s = DamageAPI.ReserveDamageType(); + ModdedDamageTypes.NucleatorRadiationOnHit = DamageAPI.ReserveDamageType(); On.RoR2.HealthComponent.TakeDamage += HealthComponent_TakeDamage; On.RoR2.GlobalEventManager.OnHitEnemy += GlobalEventManager_OnHitEnemy; diff --git a/Starstorm 2/Starstorm2Release/CHANGELOG.md b/Starstorm 2/Starstorm2Release/CHANGELOG.md index add5f383..e15a0ee7 100644 --- a/Starstorm 2/Starstorm2Release/CHANGELOG.md +++ b/Starstorm 2/Starstorm2Release/CHANGELOG.md @@ -1,3 +1,7 @@ +`0.18.12` + +- Fixed Nucleator Radation damagetype being unregistered. Should fix certain attacks causing radiation to be applied. + `0.18.11` - Fixed Nucleator Sit emote. diff --git a/Starstorm 2/Starstorm2Release/VideogameMod2Unofficial.zip b/Starstorm 2/Starstorm2Release/VideogameMod2Unofficial.zip index 4979a28c..d406a5d6 100644 Binary files a/Starstorm 2/Starstorm2Release/VideogameMod2Unofficial.zip and b/Starstorm 2/Starstorm2Release/VideogameMod2Unofficial.zip differ diff --git a/Starstorm 2/Starstorm2Release/manifest.json b/Starstorm 2/Starstorm2Release/manifest.json index 4e8eac12..0602a1b9 100644 --- a/Starstorm 2/Starstorm2Release/manifest.json +++ b/Starstorm 2/Starstorm2Release/manifest.json @@ -1,6 +1,6 @@ { "name": "Videogame_Mod_2_Unofficial", - "version_number": "0.18.11", + "version_number": "0.18.12", "website_url": "https://github.com/Moffein/Starstorm2Unofficial", "description": "A restoration of the pre-SotV Videogame Mod 2. Compatible with the official Videogame Mod 2!", "dependencies": [ diff --git a/Starstorm 2/Starstorm2Release/plugins/ChirrLover-Starstorm2Unofficial/Starstorm2Unofficial.dll b/Starstorm 2/Starstorm2Release/plugins/ChirrLover-Starstorm2Unofficial/Starstorm2Unofficial.dll index 443ec556..4afb81a0 100644 Binary files a/Starstorm 2/Starstorm2Release/plugins/ChirrLover-Starstorm2Unofficial/Starstorm2Unofficial.dll and b/Starstorm 2/Starstorm2Release/plugins/ChirrLover-Starstorm2Unofficial/Starstorm2Unofficial.dll differ diff --git a/Starstorm 2/StarstormPlugin.cs b/Starstorm 2/StarstormPlugin.cs index d461c8d6..9435085c 100644 --- a/Starstorm 2/StarstormPlugin.cs +++ b/Starstorm 2/StarstormPlugin.cs @@ -55,7 +55,7 @@ public class StarstormPlugin : BaseUnityPlugin { internal const string guid = "com.ChirrLover.Starstorm2Unofficial"; internal const string modName = "Starstorm 2 Unofficial"; - internal const string version = "0.18.8"; + internal const string version = "0.18.12"; public static StarstormPlugin instance;