From 690c4b5e5705d840ce6df7fae7f9a6bc0d483c08 Mon Sep 17 00:00:00 2001 From: redfast00 Date: Wed, 8 Apr 2020 01:57:13 +0200 Subject: [PATCH] Fix euclidean distance formula --- backend/templates/help/help_1.html.tera | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/templates/help/help_1.html.tera b/backend/templates/help/help_1.html.tera index 79dd979..38aa8d6 100644 --- a/backend/templates/help/help_1.html.tera +++ b/backend/templates/help/help_1.html.tera @@ -16,7 +16,7 @@ Information
  • planets on 2d plane
  • players can occupy planets
  • each turn, an occupied planet constructs a new ship for its owner
  • -
  • spaceship travel time is proportional to the euclidean distance (floor(sqrt(dx * dx - dy * dy)))
  • +
  • spaceship travel time is proportional to the euclidean distance (floor(sqrt(dx * dx + dy * dy)))
  • combat happens only on planets
  • Turn Order