summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2021-03-07 10:29:38 -0500
committerKelly Rauchenberger <fefferburbia@gmail.com>2021-03-07 10:29:38 -0500
commit5fe3fd37b65d9e4650053dfff4d077d192f31739 (patch)
treedd02b4912025334156e57d6965868677dc1f6f00 /src
parent33467f58a04a37085f72324b095ee75b59d61355 (diff)
downloadtanetane-5fe3fd37b65d9e4650053dfff4d077d192f31739.tar.gz
tanetane-5fe3fd37b65d9e4650053dfff4d077d192f31739.tar.bz2
tanetane-5fe3fd37b65d9e4650053dfff4d077d192f31739.zip
Added connection between mirror map and hallucination_interior
Diffstat (limited to 'src')
-rw-r--r--src/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.cpp b/src/main.cpp index 772fff8..9cc25bb 100644 --- a/src/main.cpp +++ b/src/main.cpp
@@ -29,9 +29,9 @@ void loop(Renderer& renderer, std::mt19937& rng) {
29 game.emplaceSystem<MessageSystem>(); 29 game.emplaceSystem<MessageSystem>();
30 game.emplaceSystem<EffectSystem>(); 30 game.emplaceSystem<EffectSystem>();
31 31
32 game.loadMap("pink_shell"); 32 game.loadMap("hallucination_interior");
33 33
34 vec2i warpLoc = game.getMap().getWarpPoint("fromOutside"); 34 vec2i warpLoc = game.getMap().getWarpPoint("debugWarp_rightside");
35 35
36 int lucasSprite = game.emplaceSprite("lucas"); 36 int lucasSprite = game.emplaceSprite("lucas");
37 game.getSystem<TransformSystem>().initSprite(lucasSprite, warpLoc); 37 game.getSystem<TransformSystem>().initSprite(lucasSprite, warpLoc);