From 55521f457014ae9335b3e1a30d598384cc9e7105 Mon Sep 17 00:00:00 2001 From: JohnCorby Date: Sun, 27 Mar 2022 17:51:28 -0700 Subject: [PATCH] ShipCustomAttach: center the prompts, people are dumbasses --- 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 84f16cdc..d113260a 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.UpperRight); - Locator.GetPromptManager().AddScreenPrompt(_detachPrompt, PromptPosition.UpperRight); + Locator.GetPromptManager().AddScreenPrompt(_attachPrompt, PromptPosition.Center); + Locator.GetPromptManager().AddScreenPrompt(_detachPrompt, PromptPosition.Center); _playerAttachPoint = gameObject.AddComponent(); _playerAttachPoint._lockPlayerTurning = false; @@ -24,8 +24,8 @@ public class ShipCustomAttach : MonoBehaviour { if (Locator.GetPromptManager()) { - Locator.GetPromptManager().RemoveScreenPrompt(_attachPrompt, PromptPosition.UpperRight); - Locator.GetPromptManager().RemoveScreenPrompt(_detachPrompt, PromptPosition.UpperRight); + Locator.GetPromptManager().RemoveScreenPrompt(_attachPrompt, PromptPosition.Center); + Locator.GetPromptManager().RemoveScreenPrompt(_detachPrompt, PromptPosition.Center); } }