Skip to content

Commit 1d0f584

Browse files
committed
fix: minor review stuff
1 parent d7d87de commit 1d0f584

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

editor.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -2222,7 +2222,7 @@ function editor_draw()
22222222
guielements["tabcustom"]:draw()
22232223
guielements["tabanimations"]:draw()
22242224

2225-
if editorstate == "tiles" then
2225+
if editorstate == "tiles" then
22262226
--TILES
22272227
love.graphics.setColor(255, 255, 255)
22282228

poof.lua

+2-1
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,10 @@ function poof:update(dt)
3737
end
3838

3939
function poof:draw()
40-
love.graphics.setColor(255, 255, 255)
4140
if self.color then
4241
love.graphics.setColor(self.color)
42+
else
43+
love.graphics.setColor(255, 255, 255)
4344
end
4445
local mirror = 1
4546
if self.frames[self.frame] < 0 then

0 commit comments

Comments
 (0)