aboutsummaryrefslogtreecommitdiff
path: root/src/paperflight/static/update.js
diff options
context:
space:
mode:
authorMark Powers <markppowers0@gmail.com>2020-05-13 22:48:06 -0500
committerMark Powers <markppowers0@gmail.com>2020-05-13 22:48:06 -0500
commitbe1201b6aabc5365cadfff24049fe311d8458c9b (patch)
tree87a46db466314ddf91453aab6f184f4f8a8cdcdc /src/paperflight/static/update.js
parent7889250b115eec8709c0c9ff8345e0bef88037b5 (diff)
Fix vent bug, add constant spaced vent air streams
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
}
}