From 624e2ecb94907ea97aa6672c17e118e43845f956 Mon Sep 17 00:00:00 2001 From: Kazhnuz Date: Sat, 27 Jul 2019 15:41:53 +0200 Subject: [PATCH] fix(testmap): use the exact Battle coordinate --- sonic-radiance.love/game/modules/world/maps/test.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sonic-radiance.love/game/modules/world/maps/test.lua b/sonic-radiance.love/game/modules/world/maps/test.lua index f11b7b4..5deb5a3 100644 --- a/sonic-radiance.love/game/modules/world/maps/test.lua +++ b/sonic-radiance.love/game/modules/world/maps/test.lua @@ -12,12 +12,12 @@ function TestMap:loadCollisions() self.world:newCollision("wall", 0, 0, -16, 8*64, 8*32, 16) self.world:newCollision("wall", 64*1, 32*1, 0, 64*1, 32*3, 48) self.world:newCollision("wall", 64*4, 32*1, 0, 64*3, 32*1, 48) - self.world:newCollision("wall", 64*6, 32*5, 0, 64*1, 32*3, 48) - self.world:newCollision("wall", 64*1, 32*7, 0, 64*3, 32*1, 48) + self.world:newCollision("wall", 64*6, 32*4, 0, 64*1, 32*3, 48) + self.world:newCollision("wall", 64*1, 32*6, 0, 64*3, 32*1, 48) end function TestMap:getDimensions() - return 8*64, 9*32 + return 8*64, 8*32 end function TestMap:loadPlayers()