Compare commits

...

5 Commits

9 changed files with 29 additions and 3 deletions

Binary file not shown.

View File

@ -6,6 +6,13 @@ See https://en.wiki.sureai.net/Enderal:Patch for the list of official patches up
Beware, spoilers ahead!
2.1.1 (2024-04-24)
- Fixed hidden stashes not showing up.
- Fixed incorrectly assigned racial bonus during quick start.
- Fixed the Quick Reflexes slow down effect sometimes getting stuck.
- Fixed description of the "Vandal: Barbarian" perk (thanks, LevinLozenges).
2.1.0 (2024-03-02)
This update requires starting a new game.
As of this release, Enderal SE is compatible with Skyrim SE 1.5.97 and 1.6.640-1.6.1179.

View File

@ -1 +1 @@
version = 2.1
version = 2.1.1

Binary file not shown.

Binary file not shown.

View File

@ -116,7 +116,7 @@ inline void CheckScriptVersions()
scripts["_00E_Theriantrophist_PlayerAsWerewolf"] = 1;
scripts["_00E_Theriantrophist_AlchemyControl"] = 1;
scripts["_00E_PlayerhousingMaster"] = 1;
scripts["_00E_ContainerBonusControl"] = 1;
scripts["_00E_ContainerBonusControl"] = 2;
scripts["_00E_AffinityControl"] = 1;
scripts["_00E_SympathyControl"] = 1;
scripts["_00E_EnderalMCM"] = 1;

View File

@ -0,0 +1,19 @@
ScriptName QuickReflexesFix extends activemagiceffect
Spell Property PerkQuickReflexes Auto
float Property fUpdateTime Auto
Event OnEffectStart(Actor akCaster, Actor akTarget)
If akCaster == Game.GetForm(0x14)
if SKSE.GetVersion()
fUpdateTime = GetDuration()
endif
RegisterForSingleUpdate(fUpdateTime + 0.05)
EndIf
EndEvent
; Since this is a Fire and Forget spell, this update normally gets unregistered before OnUpdate() ever fires
Event OnUpdate()
(Game.GetForm(0x14) as Actor).DispelSpell(PerkQuickReflexes)
EndEvent

View File

@ -2,7 +2,7 @@ Scriptname _00E_ContainerBonusControl extends Quest Hidden
; This script sets up the sleight of hand loot of a chest upon activating it
int function _GetScriptVersion() Global
return 1
return 2
endFunction
;=====================================================================================