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"