SynchronisedNerdism / KK_AgeProgression

GNU General Public License v3.0
2 stars 0 forks source link

Does not load in VR mode #4

Open wagyus opened 9 months ago

wagyus commented 9 months ago

The effects of KK_AgeProgression does not hook into the VR version.

Line 20 and 21 in AgePro.cs is currently set to:

private const string GameProcessNameVR = "KoikatuKoikatuVR"; private const string GameProcessNameVRSteam = "KoikatuKoikatuVRSteam";

Where the VR process name is actually KoikatuVR for non-Steam version.

image

Additionally, I found the internal constants are set to "KoikatuVR" and "Koikatsu Party VR" as well. See BepisPlugins source.

wagyus commented 9 months ago

I suggest changing to the below for AgePro.cs:

Line 20: private const string GameProcessNameVR = "KoikatuVR"; Line 21: private const string GameProcessNameVRSteam = "Koikatu Party VR";