0
0
mirror of https://github.com/sp-tarkov/modules.git synced 2025-02-13 09:50:43 -05:00

fix: disablepve in-raid bug when finding tooltip (!119)

should fix SPT-AKI/Issues#640

Reviewed-on: SPT-AKI/Modules#119
Co-authored-by: kiobu <kiobu@sdf.org>
Co-committed-by: kiobu <kiobu@sdf.org>
This commit is contained in:
kiobu 2024-05-01 08:17:57 +00:00 committed by chomp
parent d9a4df3a03
commit 5676c58fce

View File

@ -21,7 +21,8 @@ namespace Aki.Custom.Patches
private static bool PatchPrefix(ESessionMode sessionMode, Profile profile, ref GameObject ____notAvailableState)
{
____notAvailableState.SetActive(true);
Object.FindObjectsOfType<HoverTooltipArea>().Where(o => o.name == "Locked").Single().SetMessageText("<color=#51c6db>SPT-AKI</color> is already PvE.");
Object.FindObjectsOfType<HoverTooltipArea>().Where(o => o.name == "Locked").SingleOrDefault()?.SetMessageText("<color=#51c6db>SPT-AKI</color> is already PvE.");
return false;
}
}