diff --git a/leaky-ships/components/Lobby/LobbyFrame.tsx b/leaky-ships/components/Lobby/LobbyFrame.tsx
index 04eb11c..7d1ffac 100644
--- a/leaky-ships/components/Lobby/LobbyFrame.tsx
+++ b/leaky-ships/components/Lobby/LobbyFrame.tsx
@@ -28,15 +28,15 @@ function LobbyFrame({ openSettings }: { openSettings: () => void }) {
VS
{enemy ? (
-
+
) : (
-
+
Warte auf Spieler 2 {Array.from(Array(dots), () => ".").join("")}
{Array.from(Array(3 - dots), (_, i) => (
diff --git a/leaky-ships/components/OptionButton.tsx b/leaky-ships/components/OptionButton.tsx
index 77bb853..db4356d 100644
--- a/leaky-ships/components/OptionButton.tsx
+++ b/leaky-ships/components/OptionButton.tsx
@@ -2,21 +2,32 @@ import {
FontAwesomeIcon,
FontAwesomeIconProps,
} from "@fortawesome/react-fontawesome"
+import classNames from "classnames"
import { ReactNode } from "react"
function OptionButton({
icon,
action,
children,
+ disabled,
}: {
icon: FontAwesomeIconProps["icon"]
action?: () => void
children: ReactNode
+ disabled?: boolean
}) {
return (