diff options
Diffstat (limited to 'source/game/items/StarTools.cpp')
-rw-r--r-- | source/game/items/StarTools.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/game/items/StarTools.cpp b/source/game/items/StarTools.cpp index aef26a5..6edf3fb 100644 --- a/source/game/items/StarTools.cpp +++ b/source/game/items/StarTools.cpp @@ -610,7 +610,7 @@ List<Drawable> PaintingBeamTool::drawables() const { auto result = BeamItem::drawables(); for (auto& entry : result) { if (entry.isImage()) - entry.imagePart().image = entry.imagePart().image + m_colorKeys[m_colorIndex]; + entry.imagePart().image.directives += m_colorKeys[m_colorIndex]; } return result; } |