diff options
author | jc_gargma <jc_gargma@iserlohn-fortress.net> | 2023-03-03 11:26:57 -0800 |
---|---|---|
committer | jc_gargma <jc_gargma@iserlohn-fortress.net> | 2023-03-03 11:26:57 -0800 |
commit | ad5e2f3f2482197eeb628cdcfb23b0caab514d1e (patch) | |
tree | 3f5c513f484626c8911357db886afbe478708bdd | |
parent | Fix the broken upstream changes to loffice tower. (diff) | |
download | cataclysm-dda-tileset_undeadpeople-ad5e2f3f2482197eeb628cdcfb23b0caab514d1e.tar.xz |
Fix the baseball field overmap tiles.
-East/West backwards.
-Also yet another directional array incorrectly converted into tile variants.
-rw-r--r-- | tile_config.json | 28 |
1 files 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 }, |