add debug action to meet solanum

This commit is contained in:
Mister_Nebula 2022-01-12 10:52:11 +00:00
parent 253198d8f0
commit 4950987e57

View File

@ -47,7 +47,7 @@ namespace QSB.Utility
* 3 - Destroy probe
* 4 - Damage ship electricals
* 5 - Trigger supernova
* 6 -
* 6 - Set MET_SOLANUM
* 7 - Warp to vessel
* 8 - Place warp core into vessel
* 9 - Load eye scene
@ -83,6 +83,14 @@ namespace QSB.Utility
new DebugTriggerSupernovaMessage().Send();
}
if (Keyboard.current[Key.Numpad6].wasPressedThisFrame)
{
PlayerData.SetPersistentCondition("MET_SOLANUM", true);
PlayerData.SetPersistentCondition("MET_PRISONER", true);
DialogueConditionManager.SharedInstance.SetConditionState("MET_SOLANUM", true);
DialogueConditionManager.SharedInstance.SetConditionState("MET_PRISONER", true);
}
if (Keyboard.current[Key.Numpad7].wasPressedThisFrame)
{
GoToVessel();