mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2026-01-03 08:37:59 -08:00
Fix bug in Lunar: wrong capsule weight.
Must be 32500 lbs, not 33000.
This commit is contained in:
@@ -113,7 +113,7 @@ async function main()
|
||||
print("\n");
|
||||
a = 120;
|
||||
v = 1;
|
||||
m = 33000;
|
||||
m = 32500;
|
||||
n = 16500;
|
||||
g = 1e-3;
|
||||
z = 1.8;
|
||||
|
||||
Reference in New Issue
Block a user