Skip to content
This repository has been archived by the owner on Jul 3, 2023. It is now read-only.

Commit

Permalink
Fix some dodgy logic preventing the event slide being displayed
Browse files Browse the repository at this point in the history
  • Loading branch information
craig410 committed Jul 12, 2019
1 parent d5861b1 commit 3d33e01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion node.lua
Original file line number Diff line number Diff line change
Expand Up @@ -565,7 +565,7 @@ function node.render()
event_slide:draw(0, 0, WIDTH, HEIGHT, event_slide_alpha)
end

if event_slide_alpha <= 0 then
if event_slide_alpha < 0 then
walkin_state = "walkin"
end

Expand Down

0 comments on commit 3d33e01

Please sign in to comment.