From 53d57d8e6a4ff492733e20ae74cebe025bb3f6f6 Mon Sep 17 00:00:00 2001 From: bvanvugt <1531419+bvanvugt@users.noreply.github.com> Date: Wed, 1 Jan 2020 23:10:49 -0800 Subject: [PATCH] Update README --- README.md | 6 ++++-- standard.go | 1 + 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3775fc7..212355c 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ -# rules -Rulesets and other game logic +# BattlesnakeOfficial/rules +Battlesnake rules and game logic. + +[https://play.battlesnake.com](https://play.battlesnake.com) diff --git a/standard.go b/standard.go index 07bf73b..6752893 100644 --- a/standard.go +++ b/standard.go @@ -13,6 +13,7 @@ const ( BOARD_SIZE_LARGE = 19 FOOD_SPAWN_CHANCE = 0.1 SNAKE_MAX_HEALTH = 100 + // bvanvugt - TODO: Just return formatted strings instead of codes? ELIMINATED_COLLISION = "snake-collision" ELIMINATED_SELF_COLLISION = "snake-self-collision"