aboutsummaryrefslogtreecommitdiff
path: root/src/paperflight/static/draw.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/paperflight/static/draw.js')
-rw-r--r--src/paperflight/static/draw.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/paperflight/static/draw.js b/src/paperflight/static/draw.js
index a4d5310..0be9ae9 100644
--- a/src/paperflight/static/draw.js
+++ b/src/paperflight/static/draw.js
@@ -45,7 +45,7 @@ function drawVent() {
ctx.fillRect(this.x, this.y, this.width, 10)
// every 1/3 seconds spawn new air vents
// (since this is purely cosmetic, updates to it are in here)
- if (t % Math.floor(fps / 3) == 0) {
+ if ((this.state == -1 || this.state == switchState) && t % Math.floor(fps / 3) == 0) {
for (var j = 0; j <= this.width; j += 20) {
this.wind.push({
x: this.x + j,