From a7232b083159871bdfde5e6283aa19c32ae14262 Mon Sep 17 00:00:00 2001 From: Cameron Reikes Date: Wed, 23 Nov 2022 00:07:21 -0800 Subject: [PATCH] Generate merge block station --- gamestate.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gamestate.c b/gamestate.c index 72ecfd6..a5c79aa 100644 --- a/gamestate.c +++ b/gamestate.c @@ -1868,6 +1868,7 @@ void create_hard_shell_station(GameState *gs, V2 pos, enum BoxType platonic_type for (float y = -BOX_SIZE * 5.0; y <= BOX_SIZE * 5.0; y += BOX_SIZE) { BOX_AT_TYPE(grid, ((V2){BOX_SIZE * 5.0, y}), BoxHullpiece); + BOX_AT_TYPE(grid, ((V2){-BOX_SIZE * 5.0, y}), BoxHullpiece); } for (float x = -BOX_SIZE * 5.0; x <= BOX_SIZE * 5.0; x += BOX_SIZE) { @@ -1888,6 +1889,7 @@ void create_initial_world(GameState *gs) create_hard_shell_station(gs, (V2){0.0f, 100.0f}, BoxGyroscope); create_bomb_station(gs, (V2){0.0f, -100.0f}, BoxCloaking); create_bomb_station(gs, (V2){100.0f, 100.0f}, BoxMissileLauncher); + create_hard_shell_station(gs, (V2){50.0f, 100.0f}, BoxMerge); #endif }