[ItemWidget] Fixed items taking green tint after switching with grass.

This commit is contained in:
Quentin Bazin 2020-07-11 03:12:11 +02:00
parent 6a68b1a430
commit bd5174ba27

View File

@ -70,6 +70,8 @@ void ItemWidget::updateImage(const BlockState *blockState) {
if (blockState)
m_image.setColor(blockState->colorMultiplier());
else
m_image.setColor(gk::Color::White);
m_isImage = true;
}