From ee6a4f10ae2440b00d3c7ff8ca43be2c43457c3a Mon Sep 17 00:00:00 2001 From: Josh Deprez Date: Sat, 14 Aug 2021 17:22:14 +1000 Subject: [PATCH] clarifying comment --- game/aw.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/game/aw.go b/game/aw.go index b2f7190..8fa37f4 100644 --- a/game/aw.go +++ b/game/aw.go @@ -52,7 +52,8 @@ func (aw *Awakeman) Update() error { // Has traction? if aw.CollidesAt(aw.Pos.Add(image.Pt(0, 1))) { - // Not falling + // Not falling. + // Instantly decelerate (AW absorbs all kinetic E in legs, or something) aw.vy = 0 aw.coyoteTimer = coyoteTime } else {