diff --git a/_build/loose_files.txt b/_build/loose_files.txt index 2f322f5c..f6918da0 100644 --- a/_build/loose_files.txt +++ b/_build/loose_files.txt @@ -4,8 +4,6 @@ Enderal SE v2.* Changelog.txt Enderal - Forgotten Stories.esm Enderal - Forgotten Stories.ini E - Update.bsa -Interface\controls\pc\controlmap.txt -Interface\dialoguemenu.swf Interface\exported\widgets\skyui\followerpanel.swf Interface\fontconfig.txt Interface\fonts_en2.swf @@ -31,10 +29,7 @@ Scripts\SKI_ConfigMenu.pex SKSE\Plugins\EnderalSE.dll SKSE\Plugins\EnderalSE.ini SKSE\Plugins\EnderalVersion.ini -SKSE\Plugins\version-1-5-97-0.bin -SKSE\Plugins\versionlib-1-6-353-0.bin -SKSE\Plugins\versionlib-1-6-640-0.bin -SKSE\Plugins\versionlib-1-6-659-0.bin +SKSE\Plugins\*.bin SKSE\SKSE.ini Skyrim.esm Update.esm diff --git a/scripts/_00e_heromenualias.pex b/scripts/_00e_heromenualias.pex index 1e6d542e..ebc1460b 100644 Binary files a/scripts/_00e_heromenualias.pex and b/scripts/_00e_heromenualias.pex differ diff --git a/source/scripts/_00e_heromenualias.psc b/source/scripts/_00e_heromenualias.psc index c992ae7c..723b5755 100644 --- a/source/scripts/_00e_heromenualias.psc +++ b/source/scripts/_00e_heromenualias.psc @@ -21,7 +21,10 @@ Event OnPlayerLoadGame() EndEvent Event OnHeroMenuRequest(string eventName, string strArg = "", float numArg = 0.0, Form sender = None) - GotoState("TryToOpen") + ; OnHeroMenuRequest refuses to compile in other states + if GetState() == "" + GotoState("TryToOpen") + endif EndEvent state TryToOpen @@ -50,7 +53,7 @@ state Active Event OnControlDown(string sControl) GotoState("") EndEvent - + Event OnEndState() UnregisterForAllControls() UI.CloseCustomMenu()