diff --git a/web-svelte/src/components/modals/ShipDesigner.svelte b/web-svelte/src/components/modals/ShipDesigner.svelte index a7cf169..0858b9b 100644 --- a/web-svelte/src/components/modals/ShipDesigner.svelte +++ b/web-svelte/src/components/modals/ShipDesigner.svelte @@ -11,7 +11,6 @@ const emit = createEventDispatcher(); export let open: boolean = false; -/** This will be fetched from the server when opening the modal */ const colours: IColour[] = [ { name: "Green", hex: "#00aa00" }, { name: "Blue", hex: "#0077b6" }, @@ -26,6 +25,7 @@ const colours: IColour[] = [ const spaceships: ISpaceship[] = [ { name: "Space Shuttle", id: "space-shuttle" }, { name: "Rocket", id: "rocket" }, + { name: "Sailboat", id: "sailboat" }, ] let player = $players.find(p => p.name == $myName);