Compare commits

..

No commits in common. "2bdde4ccb23d9da4243595a9c707065ec18ce6af" and "15bab7d1d7981d6ff2c920ed4b3c7bb175260262" have entirely different histories.

9 changed files with 3 additions and 29 deletions

Binary file not shown.

View File

@ -6,13 +6,6 @@ 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.1
version = 2.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"] = 2;
scripts["_00E_ContainerBonusControl"] = 1;
scripts["_00E_AffinityControl"] = 1;
scripts["_00E_SympathyControl"] = 1;
scripts["_00E_EnderalMCM"] = 1;

View File

@ -1,19 +0,0 @@
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 2
return 1
endFunction
;=====================================================================================