From f8bd403e6b5663b3edab8d7163fd2a9c33ffbe96 Mon Sep 17 00:00:00 2001 From: Brevven Date: Sun, 23 May 2021 17:28:10 -0700 Subject: [PATCH] fix for mixed icon --- changelog.txt | 2 ++ info.json | 2 +- tungsten-recipe.lua | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/changelog.txt b/changelog.txt index 45d3e9d..a47826a 100644 --- a/changelog.txt +++ b/changelog.txt @@ -3,6 +3,8 @@ Version: 0.0.11 Date: 2021-05-23 Features: - New thumbnail + Fixes: + - Fix for mixed icons issue introduced in 0.0.10 --------------------------------------------------------------------------------------------------- Version: 0.0.10 Date: 2021-05-22 diff --git a/info.json b/info.json index a829ce4..4b026e3 100644 --- a/info.json +++ b/info.json @@ -1,6 +1,6 @@ { "name": "bztungsten", - "version": "0.0.10", + "version": "0.0.11", "factorio_version": "1.1", "title": "Tungsten", "author": "Brevven", diff --git a/tungsten-recipe.lua b/tungsten-recipe.lua index c14b105..def564a 100644 --- a/tungsten-recipe.lua +++ b/tungsten-recipe.lua @@ -16,7 +16,7 @@ data:extend( icons = (mods["Krastorio2"] and { { icon = "__bztungsten__/graphics/icons/tungsten-plate.png", icon_size = 128, icon_mipmaps = 3, }, - { icon = "__bztungsten__/graphics/icons/tungsten-ore.png", icon_size = 128, icon_mipmaps = 3, scale=0.25, shift= {-8, -8}}, + { icon = "__bztungsten__/graphics/icons/tungsten-ore.png", icon_size = 64, icon_mipmaps = 3, scale=0.25, shift= {-8, -8}}, } or { { icon = "__bztungsten__/graphics/icons/tungsten-plate.png", icon_size = 128, icon_mipmaps = 3, }, }