From 2d90d41b4e49cb3ebe694e25852f87c30f23094f Mon Sep 17 00:00:00 2001 From: nickofolas Date: Sun, 24 Apr 2022 14:52:58 -0500 Subject: [PATCH] Update Bribe Game --- src/Infiltration/ui/BribeGame.tsx | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/src/Infiltration/ui/BribeGame.tsx b/src/Infiltration/ui/BribeGame.tsx index 6f6811e14..ea6ac5773 100644 --- a/src/Infiltration/ui/BribeGame.tsx +++ b/src/Infiltration/ui/BribeGame.tsx @@ -4,12 +4,12 @@ import { IMinigameProps } from "./IMinigameProps"; import { KeyHandler } from "./KeyHandler"; import { GameTimer } from "./GameTimer"; import { interpolate } from "./Difficulty"; -import Typography from "@mui/material/Typography"; import { KEY } from "../../utils/helpers/keyCodes"; import { AugmentationNames } from "../../Augmentation/data/AugmentationNames"; import { Player } from "../../Player"; import { Settings } from "../../Settings/Settings"; import { downArrowSymbol, upArrowSymbol } from "../utils"; +import { Paper, Typography, Box } from "@mui/material"; interface Difficulty { [key: string]: number; @@ -88,13 +88,11 @@ export function BribeGame(props: IMinigameProps): React.ReactElement { } return ( - + <> - - Say something nice about the guard. + + Say something nice about the guard - - {upArrowSymbol} @@ -104,8 +102,8 @@ export function BribeGame(props: IMinigameProps): React.ReactElement { {downArrowSymbol} - - + + ); }