From f97c410cdaa861bdd3d948d12d2a3adad21b583a Mon Sep 17 00:00:00 2001 From: JohnCorby Date: Tue, 29 Mar 2022 11:16:43 -0700 Subject: [PATCH] Revert "ShipCustomAttach: center the prompts, people are dumbasses" This reverts commit 55521f457014ae9335b3e1a30d598384cc9e7105. --- QSB/ShipSync/ShipCustomAttach.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/QSB/ShipSync/ShipCustomAttach.cs b/QSB/ShipSync/ShipCustomAttach.cs index d113260a..84f16cdc 100644 --- a/QSB/ShipSync/ShipCustomAttach.cs +++ b/QSB/ShipSync/ShipCustomAttach.cs @@ -11,8 +11,8 @@ public class ShipCustomAttach : MonoBehaviour private void Awake() { - Locator.GetPromptManager().AddScreenPrompt(_attachPrompt, PromptPosition.Center); - Locator.GetPromptManager().AddScreenPrompt(_detachPrompt, PromptPosition.Center); + Locator.GetPromptManager().AddScreenPrompt(_attachPrompt, PromptPosition.UpperRight); + Locator.GetPromptManager().AddScreenPrompt(_detachPrompt, PromptPosition.UpperRight); _playerAttachPoint = gameObject.AddComponent(); _playerAttachPoint._lockPlayerTurning = false; @@ -24,8 +24,8 @@ public class ShipCustomAttach : MonoBehaviour { if (Locator.GetPromptManager()) { - Locator.GetPromptManager().RemoveScreenPrompt(_attachPrompt, PromptPosition.Center); - Locator.GetPromptManager().RemoveScreenPrompt(_detachPrompt, PromptPosition.Center); + Locator.GetPromptManager().RemoveScreenPrompt(_attachPrompt, PromptPosition.UpperRight); + Locator.GetPromptManager().RemoveScreenPrompt(_detachPrompt, PromptPosition.UpperRight); } }