瀏覽代碼

Prevent from TPing into a wall.

Sacha Ligthert 2 年之前
父節點
當前提交
d554bf73ef
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      game.go

+ 2 - 2
game.go

@@ -177,8 +177,8 @@ func quit(game *Game) {
 func (game *Game) randPos() Position {
 	var pos Position
 
-	x := 1 + rand.Intn(77)
-	y := 1 + rand.Intn(22)
+	x := 2 + rand.Intn(76)
+	y := 2 + rand.Intn(21)
 
 	pos.x = x
 	pos.y = y