diff --git a/src/data/kotlin/ru/dbotthepony/mc/otm/datagen/textures/ColorizedSpritesProvider.kt b/src/data/kotlin/ru/dbotthepony/mc/otm/datagen/textures/ColorizedSpritesProvider.kt index aff01560b..5d3b5b652 100644 --- a/src/data/kotlin/ru/dbotthepony/mc/otm/datagen/textures/ColorizedSpritesProvider.kt +++ b/src/data/kotlin/ru/dbotthepony/mc/otm/datagen/textures/ColorizedSpritesProvider.kt @@ -52,6 +52,20 @@ class ColorizedSpritesProvider(event: GatherDataEvent) : SpriteSourceProvider(ev ) } + addSource( + ColorizedSpriteSource( + modLocation("block/decorative/tritanium_block"), + modLocation("block/decorative/tritanium_block_colorless"), + modLocation("block/decorative/tritanium_block"), "_" + ).trackGeneratedTextures(existingFileHelper) + ) + addSource( + ColorizedSpriteSource( + modLocation("block/decorative/tritanium_pillar"), + modLocation("block/decorative/tritanium_pillar_colorless"), + modLocation("block/decorative/tritanium_pillar"), "_" + ).trackGeneratedTextures(existingFileHelper) + ) addSource( ColorizedSpriteSource( modLocation("block/decorative/tritanium_striped_block_base"), @@ -87,6 +101,21 @@ class ColorizedSpritesProvider(event: GatherDataEvent) : SpriteSourceProvider(ev modLocation("block/decorative/tritanium_trapdoor"), "_" ).trackGeneratedTextures(existingFileHelper) ) + + addSource( + ColorizedSpriteSource( + modLocation("block/decorative/vent_colorless"), + modLocation("block/decorative/vent_overlay"), + modLocation("block/decorative/vent"), "_", true, false + ).trackGeneratedTextures(existingFileHelper) + ) + addSource( + ColorizedSpriteSource( + modLocation("block/decorative/vent_alternative_colorless"), + modLocation("block/decorative/vent_alternative_overlay"), + modLocation("block/decorative/vent_alternative"), "_", true, false + ).trackGeneratedTextures(existingFileHelper) + ) } } } diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_block_black.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_block_black.png deleted file mode 100644 index 7cab72904..000000000 Binary files a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_block_black.png and /dev/null differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_block_blue.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_block_blue.png deleted file mode 100644 index e0d31aeac..000000000 Binary files a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_block_blue.png and /dev/null differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_block_brown.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_block_brown.png deleted file mode 100644 index f57625e5b..000000000 Binary files a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_block_brown.png and /dev/null differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_block_white.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_block_colorless.png similarity index 100% rename from src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_block_white.png rename to src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_block_colorless.png diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_block_cyan.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_block_cyan.png deleted file mode 100644 index 450bce262..000000000 Binary files a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_block_cyan.png and /dev/null differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_block_gray.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_block_gray.png deleted file mode 100644 index 0edfeaee3..000000000 Binary files a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_block_gray.png and /dev/null differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_block_green.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_block_green.png deleted file mode 100644 index 54b768461..000000000 Binary files a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_block_green.png and /dev/null differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_block_light_blue.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_block_light_blue.png deleted file mode 100644 index 30dfc0510..000000000 Binary files a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_block_light_blue.png and /dev/null differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_block_light_gray.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_block_light_gray.png deleted file mode 100644 index 84402f1b1..000000000 Binary files a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_block_light_gray.png and /dev/null differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_block_lime.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_block_lime.png deleted file mode 100644 index f6ddf7848..000000000 Binary files a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_block_lime.png and /dev/null differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_block_magenta.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_block_magenta.png deleted file mode 100644 index 3b2b306ac..000000000 Binary files a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_block_magenta.png and /dev/null differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_block_orange.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_block_orange.png deleted file mode 100644 index d9e5e99f0..000000000 Binary files a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_block_orange.png and /dev/null differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_block_pink.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_block_pink.png deleted file mode 100644 index d096a6d45..000000000 Binary files a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_block_pink.png and /dev/null differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_block_purple.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_block_purple.png deleted file mode 100644 index 7195de5aa..000000000 Binary files a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_block_purple.png and /dev/null differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_block_red.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_block_red.png deleted file mode 100644 index 5ea7763b5..000000000 Binary files a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_block_red.png and /dev/null differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_block_yellow.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_block_yellow.png deleted file mode 100644 index 61a433739..000000000 Binary files a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_block_yellow.png and /dev/null differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_pillar_black.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_pillar_black.png deleted file mode 100644 index 1bfc8ea10..000000000 Binary files a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_pillar_black.png and /dev/null differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_pillar_blue.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_pillar_blue.png deleted file mode 100644 index a2bd0710c..000000000 Binary files a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_pillar_blue.png and /dev/null differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_pillar_brown.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_pillar_brown.png deleted file mode 100644 index 4aa4e07ba..000000000 Binary files a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_pillar_brown.png and /dev/null differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_pillar_white.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_pillar_colorless.png similarity index 100% rename from src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_pillar_white.png rename to src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_pillar_colorless.png diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_pillar_cyan.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_pillar_cyan.png deleted file mode 100644 index f13cea880..000000000 Binary files a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_pillar_cyan.png and /dev/null differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_pillar_gray.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_pillar_gray.png deleted file mode 100644 index f409767e7..000000000 Binary files a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_pillar_gray.png and /dev/null differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_pillar_green.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_pillar_green.png deleted file mode 100644 index dbd621860..000000000 Binary files a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_pillar_green.png and /dev/null differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_pillar_light_blue.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_pillar_light_blue.png deleted file mode 100644 index d8b914224..000000000 Binary files a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_pillar_light_blue.png and /dev/null differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_pillar_light_gray.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_pillar_light_gray.png deleted file mode 100644 index df0928429..000000000 Binary files a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_pillar_light_gray.png and /dev/null differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_pillar_lime.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_pillar_lime.png deleted file mode 100644 index 62e14afda..000000000 Binary files a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_pillar_lime.png and /dev/null differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_pillar_magenta.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_pillar_magenta.png deleted file mode 100644 index cc61e32d3..000000000 Binary files a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_pillar_magenta.png and /dev/null differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_pillar_orange.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_pillar_orange.png deleted file mode 100644 index f7c76547a..000000000 Binary files a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_pillar_orange.png and /dev/null differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_pillar_pink.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_pillar_pink.png deleted file mode 100644 index 615456768..000000000 Binary files a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_pillar_pink.png and /dev/null differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_pillar_purple.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_pillar_purple.png deleted file mode 100644 index 00606ba4e..000000000 Binary files a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_pillar_purple.png and /dev/null differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_pillar_red.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_pillar_red.png deleted file mode 100644 index 3d60fa894..000000000 Binary files a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_pillar_red.png and /dev/null differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_pillar_yellow.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_pillar_yellow.png deleted file mode 100644 index a99585040..000000000 Binary files a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_pillar_yellow.png and /dev/null differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_alternative_black.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_alternative_black.png deleted file mode 100644 index 9414c5a5c..000000000 Binary files a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_alternative_black.png and /dev/null differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_alternative_blue.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_alternative_blue.png deleted file mode 100644 index f31f8d007..000000000 Binary files a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_alternative_blue.png and /dev/null differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_alternative_brown.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_alternative_brown.png deleted file mode 100644 index 48bd12cea..000000000 Binary files a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_alternative_brown.png and /dev/null differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_alternative_white.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_alternative_colorless.png similarity index 100% rename from src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_alternative_white.png rename to src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_alternative_colorless.png diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_alternative_cyan.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_alternative_cyan.png deleted file mode 100644 index a0d721bbb..000000000 Binary files a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_alternative_cyan.png and /dev/null differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_alternative_gray.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_alternative_gray.png deleted file mode 100644 index a0a058b3c..000000000 Binary files a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_alternative_gray.png and /dev/null differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_alternative_green.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_alternative_green.png deleted file mode 100644 index 377201b09..000000000 Binary files a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_alternative_green.png and /dev/null differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_alternative_light_blue.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_alternative_light_blue.png deleted file mode 100644 index 3fa16afa7..000000000 Binary files a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_alternative_light_blue.png and /dev/null differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_alternative_light_gray.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_alternative_light_gray.png deleted file mode 100644 index ce2e87783..000000000 Binary files a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_alternative_light_gray.png and /dev/null differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_alternative_lime.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_alternative_lime.png deleted file mode 100644 index 9d1d1f807..000000000 Binary files a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_alternative_lime.png and /dev/null differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_alternative_magenta.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_alternative_magenta.png deleted file mode 100644 index 3651040a0..000000000 Binary files a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_alternative_magenta.png and /dev/null differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_alternative_orange.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_alternative_orange.png deleted file mode 100644 index b230bfab4..000000000 Binary files a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_alternative_orange.png and /dev/null differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_alternative_pink.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_alternative_pink.png deleted file mode 100644 index 8e6b630c3..000000000 Binary files a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_alternative_pink.png and /dev/null differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_alternative_purple.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_alternative_purple.png deleted file mode 100644 index 66983b884..000000000 Binary files a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_alternative_purple.png and /dev/null differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_alternative_red.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_alternative_red.png deleted file mode 100644 index 6c1f55cc7..000000000 Binary files a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_alternative_red.png and /dev/null differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_alternative_yellow.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_alternative_yellow.png deleted file mode 100644 index e58ac59d0..000000000 Binary files a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_alternative_yellow.png and /dev/null differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_black.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_black.png deleted file mode 100644 index b7eaa7839..000000000 Binary files a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_black.png and /dev/null differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_blue.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_blue.png deleted file mode 100644 index 1f37f20b3..000000000 Binary files a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_blue.png and /dev/null differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_brown.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_brown.png deleted file mode 100644 index b39d35cec..000000000 Binary files a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_brown.png and /dev/null differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_white.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_colorless.png similarity index 100% rename from src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_white.png rename to src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_colorless.png diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_cyan.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_cyan.png deleted file mode 100644 index a27a9d583..000000000 Binary files a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_cyan.png and /dev/null differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_gray.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_gray.png deleted file mode 100644 index 92a4adc74..000000000 Binary files a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_gray.png and /dev/null differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_green.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_green.png deleted file mode 100644 index 2af91963d..000000000 Binary files a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_green.png and /dev/null differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_light_blue.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_light_blue.png deleted file mode 100644 index fddaaf3d4..000000000 Binary files a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_light_blue.png and /dev/null differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_light_gray.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_light_gray.png deleted file mode 100644 index 753976f57..000000000 Binary files a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_light_gray.png and /dev/null differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_lime.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_lime.png deleted file mode 100644 index 070b9fea5..000000000 Binary files a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_lime.png and /dev/null differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_magenta.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_magenta.png deleted file mode 100644 index 200954e48..000000000 Binary files a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_magenta.png and /dev/null differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_orange.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_orange.png deleted file mode 100644 index a76a40884..000000000 Binary files a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_orange.png and /dev/null differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_pink.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_pink.png deleted file mode 100644 index 696132048..000000000 Binary files a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_pink.png and /dev/null differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_purple.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_purple.png deleted file mode 100644 index 0732760a2..000000000 Binary files a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_purple.png and /dev/null differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_red.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_red.png deleted file mode 100644 index 35bc71292..000000000 Binary files a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_red.png and /dev/null differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_yellow.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_yellow.png deleted file mode 100644 index 8a210033d..000000000 Binary files a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/vent_yellow.png and /dev/null differ