diff options
author | Julien Constant <julienconstant190@gmail.com> | 2024-05-13 07:35:26 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-13 07:35:26 +0200 |
commit | c3eb8081589b53356f7db89fcdc29dc386e999c3 (patch) | |
tree | 9088a9ac07185a0d3b0815e289289289f611dbdb /src/main/resources/assets/gregtech/textures/blocks | |
parent | 306d561c3c95036ad5a3b21a0a2e0832191dfc5a (diff) | |
download | GT5-Unofficial-c3eb8081589b53356f7db89fcdc29dc386e999c3.tar.gz GT5-Unofficial-c3eb8081589b53356f7db89fcdc29dc386e999c3.tar.bz2 GT5-Unofficial-c3eb8081589b53356f7db89fcdc29dc386e999c3.zip |
Fix unwanted trailing commas from MCMETA (#2597)
This might be ignored by MC, but external JSON parser yells on this
Diffstat (limited to 'src/main/resources/assets/gregtech/textures/blocks')
4 files changed, 25 insertions, 29 deletions
diff --git a/src/main/resources/assets/gregtech/textures/blocks/fluids/fluid.molten.infinity.png.mcmeta b/src/main/resources/assets/gregtech/textures/blocks/fluids/fluid.molten.infinity.png.mcmeta index 6781d9fab1..eebd2d1c9f 100644 --- a/src/main/resources/assets/gregtech/textures/blocks/fluids/fluid.molten.infinity.png.mcmeta +++ b/src/main/resources/assets/gregtech/textures/blocks/fluids/fluid.molten.infinity.png.mcmeta @@ -1,14 +1,14 @@ { "animation": { "frametime": 1, - "frames": [ + "frames": [ 0, - 0, - 0, - 1, - 1, - 1, - 2, + 0, + 0, + 1, + 1, + 1, + 2, 2, 2, 3, @@ -29,9 +29,9 @@ 2, 2, 2, - 1, - 1, - 1, + 1, + 1, + 1 ] } -}
\ No newline at end of file +} diff --git a/src/main/resources/assets/gregtech/textures/blocks/iconsets/MACHINE_COIL_INFINITY.png.mcmeta b/src/main/resources/assets/gregtech/textures/blocks/iconsets/MACHINE_COIL_INFINITY.png.mcmeta index 203da75b0e..eebd2d1c9f 100644 --- a/src/main/resources/assets/gregtech/textures/blocks/iconsets/MACHINE_COIL_INFINITY.png.mcmeta +++ b/src/main/resources/assets/gregtech/textures/blocks/iconsets/MACHINE_COIL_INFINITY.png.mcmeta @@ -1,14 +1,14 @@ { "animation": { "frametime": 1, - "frames": [ + "frames": [ 0, - 0, - 0, - 1, - 1, - 1, - 2, + 0, + 0, + 1, + 1, + 1, + 2, 2, 2, 3, @@ -29,9 +29,9 @@ 2, 2, 2, - 1, - 1, - 1, + 1, + 1, + 1 ] } } diff --git a/src/main/resources/assets/gregtech/textures/blocks/iconsets/OVERLAY_TOP_INDUSTRIAL_APIARY_ACTIVE.png.mcmeta b/src/main/resources/assets/gregtech/textures/blocks/iconsets/OVERLAY_TOP_INDUSTRIAL_APIARY_ACTIVE.png.mcmeta index cd2c2be182..05a9e98565 100644 --- a/src/main/resources/assets/gregtech/textures/blocks/iconsets/OVERLAY_TOP_INDUSTRIAL_APIARY_ACTIVE.png.mcmeta +++ b/src/main/resources/assets/gregtech/textures/blocks/iconsets/OVERLAY_TOP_INDUSTRIAL_APIARY_ACTIVE.png.mcmeta @@ -5,9 +5,7 @@ { "index": 0, "time": 90 }, { "index": 1, "time": 2 }, { "index": 0, "time": 1 }, - { "index": 1, "time": 2 }, - - + { "index": 1, "time": 2 } ] } -}
\ No newline at end of file +} diff --git a/src/main/resources/assets/gregtech/textures/blocks/iconsets/OVERLAY_TOP_INDUSTRIAL_APIARY_ACTIVE_GLOW.png.mcmeta b/src/main/resources/assets/gregtech/textures/blocks/iconsets/OVERLAY_TOP_INDUSTRIAL_APIARY_ACTIVE_GLOW.png.mcmeta index cd2c2be182..05a9e98565 100644 --- a/src/main/resources/assets/gregtech/textures/blocks/iconsets/OVERLAY_TOP_INDUSTRIAL_APIARY_ACTIVE_GLOW.png.mcmeta +++ b/src/main/resources/assets/gregtech/textures/blocks/iconsets/OVERLAY_TOP_INDUSTRIAL_APIARY_ACTIVE_GLOW.png.mcmeta @@ -5,9 +5,7 @@ { "index": 0, "time": 90 }, { "index": 1, "time": 2 }, { "index": 0, "time": 1 }, - { "index": 1, "time": 2 }, - - + { "index": 1, "time": 2 } ] } -}
\ No newline at end of file +} |