From 38538b9147b2d357e4d629821a126d774e7a9c84 Mon Sep 17 00:00:00 2001 From: shmyga Date: Mon, 5 Feb 2018 22:47:46 +0300 Subject: [PATCH] fix --- src/common/haxe/ru/m/tankz/config/LevelBundle.hx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/haxe/ru/m/tankz/config/LevelBundle.hx b/src/common/haxe/ru/m/tankz/config/LevelBundle.hx index 10681cb..85d4023 100644 --- a/src/common/haxe/ru/m/tankz/config/LevelBundle.hx +++ b/src/common/haxe/ru/m/tankz/config/LevelBundle.hx @@ -26,7 +26,7 @@ class LevelBundle { } public static function dumps(config:Config, bricks:Array):String { - return bricks.map(function(brick:BrickConfig) return brick.type).join(''); + return bricks.map(function(brick:BrickConfig) return Std.string(brick.type)).join(''); } public static function empty(config:Config):Array {