aboutsummaryrefslogtreecommitdiff
path: root/src/paperflight/static/update.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/paperflight/static/update.js')
-rw-r--r--src/paperflight/static/update.js7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/paperflight/static/update.js b/src/paperflight/static/update.js
index ac5c284..b953914 100644
--- a/src/paperflight/static/update.js
+++ b/src/paperflight/static/update.js
@@ -30,7 +30,12 @@ function update() {
}
}
function updateVent() {
- if (isPlaneInBox(this)) {
+ // Custom box since vent height is upwards
+ if (isPlaneInBox({
+ x: this.x,
+ y: this.y-this.height,
+ width: this.width,
+ height: this.height})) {
plane.y -= 2
}
}