diff --git a/ai.asm b/ai.asm index dec4396..01ee367 100644 --- a/ai.asm +++ b/ai.asm @@ -616,10 +616,15 @@ skipThisPlayer lda OptionsTable+2 ; selected gravity asl tay + ; force correction - lower tank Y position - higher possible force + clc + lda #screenheight + sbc Ytankstable,x + sta temp2 clc lda AIForceTable,y sta RandBoundaryLow - adc #60 + adc temp2 sta RandBoundaryHigh lda AIForceTable+1,y sta RandBoundaryLow+1 diff --git a/scorch.xex b/scorch.xex index f8faf11..21c3e9b 100644 Binary files a/scorch.xex and b/scorch.xex differ