From 82709bde693177f32bffb5997c03b61ad8b559b1 Mon Sep 17 00:00:00 2001 From: Anton Vakhrushev Date: Sun, 6 Oct 2019 12:03:03 +0300 Subject: [PATCH] Fix type --- src/game/world.cr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game/world.cr b/src/game/world.cr index f3d112f..2fae7c6 100644 --- a/src/game/world.cr +++ b/src/game/world.cr @@ -3,7 +3,7 @@ require "./resources" class Game::World property ts : Int64 - def initialize(@ts = 0) + def initialize(@ts = 0_i64) @map = Map.new @resources = Resources.new @tasks = Queue.new