From 5a8bfbed202649252d03997a4e462375148c4d28 Mon Sep 17 00:00:00 2001 From: Anthony Titus Date: Thu, 12 Sep 2024 00:11:24 -0400 Subject: [PATCH] fix: missing file for ILS fix --- include/GrassControl/Events.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/GrassControl/Events.h b/include/GrassControl/Events.h index 35b3d46..42bc2ac 100644 --- a/include/GrassControl/Events.h +++ b/include/GrassControl/Events.h @@ -3,11 +3,11 @@ #include "GrassControl/Config.h" #include "GrassControl/DistantGrass.h" -class cellLoadEventHandler : public RE::BSTEventSink +class cellLoadEventHandler : public RE::BSTEventSink { public: static cellLoadEventHandler* GetSingleton(); - virtual RE::BSEventNotifyControl ProcessEvent(const RE::TESCellFullyLoadedEvent* a_event, RE::BSTEventSource* a_eventSource); + virtual RE::BSEventNotifyControl ProcessEvent(const RE::TESCellAttachDetachEvent* a_event, RE::BSTEventSource* a_eventSource) override; static void Register(); };