From ad5e2f3f2482197eeb628cdcfb23b0caab514d1e Mon Sep 17 00:00:00 2001 From: jc_gargma Date: Fri, 3 Mar 2023 11:26:57 -0800 Subject: Fix the baseball field overmap tiles. -East/West backwards. -Also yet another directional array incorrectly converted into tile variants. --- tile_config.json | 28 ++++------------------------ 1 file changed, 4 insertions(+), 24 deletions(-) diff --git a/tile_config.json b/tile_config.json index d8abb7e..f11b58f 100644 --- a/tile_config.json +++ b/tile_config.json @@ -20961,42 +20961,22 @@ }, { "id": "s_baseballfield_a1", - "fg": [ - { "weight": 25, "sprite": 10019 }, - { "weight": 25, "sprite": 10020 }, - { "weight": 25, "sprite": 10021 }, - { "weight": 25, "sprite": 10022 } - ], + "fg": [ 10019, 10022, 10021, 10020 ], "rotates": true }, { "id": "s_baseballfield_a2", - "fg": [ - { "weight": 25, "sprite": 10023 }, - { "weight": 25, "sprite": 10024 }, - { "weight": 25, "sprite": 10025 }, - { "weight": 25, "sprite": 10026 } - ], + "fg": [ 10023, 10026, 10025, 10024 ], "rotates": true }, { "id": "s_baseballfield_b1", - "fg": [ - { "weight": 25, "sprite": 10027 }, - { "weight": 25, "sprite": 10028 }, - { "weight": 25, "sprite": 10029 }, - { "weight": 25, "sprite": 10030 } - ], + "fg": [ 10027, 10030, 10029, 10028 ], "rotates": true }, { "id": "s_baseballfield_b2", - "fg": [ - { "weight": 25, "sprite": 10031 }, - { "weight": 25, "sprite": 10032 }, - { "weight": 25, "sprite": 10033 }, - { "weight": 25, "sprite": 10034 } - ], + "fg": [ 10031, 10034, 10033, 10032 ], "rotates": true }, { "id": "s_bike_shop", "fg": 10035, "rotates": false }, -- cgit v1.2.1