Removed outdated script _FS_Phasmalist_AffinityControlQuest

This commit is contained in:
Eddoursul 2023-12-19 06:09:24 +01:00
parent f7c3f19385
commit a72dd6611e
5 changed files with 1 additions and 21 deletions

Binary file not shown.

BIN
SKSE/Plugins/EnderalSE.dll (Stored with Git LFS)

Binary file not shown.

View File

@ -110,9 +110,6 @@ inline void CheckScriptVersions()
RE::BSTSmartPointer<ScriptVersionCallback>{ RE::BSTSmartPointer<ScriptVersionCallback>{
new ScriptVersionCallback("_00E_QuestFunctions", 1) new ScriptVersionCallback("_00E_QuestFunctions", 1)
}; };
RE::BSTSmartPointer<ScriptVersionCallback>{
new ScriptVersionCallback("_00E_Game_SkillmenuSC", 1)
};
RE::BSTSmartPointer<ScriptVersionCallback>{ RE::BSTSmartPointer<ScriptVersionCallback>{
new ScriptVersionCallback("_00E_Theriantrophist_AlchemyControl", 1) new ScriptVersionCallback("_00E_Theriantrophist_AlchemyControl", 1)
}; };

View File

@ -1,17 +0,0 @@
Scriptname _FS_Phasmalist_AffinityControlQuest extends Quest
{ OBSOLETE. Left for backward save compatibility.
The functions of the old code have been moved to magic effects of the apparition ability. }
_00E_FS_Affinity_SpectralWarriorSC spectralWarriorEventsListener
_00E_FS_Affinity_RitualistSC ritualistEventsListener
Function OnGameLoad()
If spectralWarriorEventsListener
spectralWarriorEventsListener.OnLoadGame()
spectralWarriorEventsListener = None
EndIf
If ritualistEventsListener
ritualistEventsListener.OnLoadGame()
ritualistEventsListener = None
EndIf
EndFunction