diff --git a/CHANGELOG.md b/CHANGELOG.md index 4cc7fe2..b30ad9b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ * Fixed join game after relogin * Updated `CreateGamePopup` for any screen sizes * Fixed tank destroy zero score label +* Added custom size map support 0.14.0 ------ diff --git a/WORK.md b/WORK.md index 7801bd7..7a2a00d 100644 --- a/WORK.md +++ b/WORK.md @@ -1,6 +1,8 @@ * [bug] **clock** bonus for spawned tanks * [feature] **shovel** bonus with armor bricks +* [feature] bonuses in dota/death mod * [feature] tanks and bullets speed balancing -* [bug] record system broken -* [feature] custom map size * [feature] result frame update (next game select, only human player info) +* [feature] network game series +* [feature] map packs (create in editor, import in game, save imported in local storage) +* [feature] update bots diff --git a/src/common/haxe/ru/m/tankz/game/record/GamePlayer.hx b/src/common/haxe/ru/m/tankz/game/record/GamePlayer.hx index 2a9a5d0..52dbc31 100644 --- a/src/common/haxe/ru/m/tankz/game/record/GamePlayer.hx +++ b/src/common/haxe/ru/m/tankz/game/record/GamePlayer.hx @@ -26,10 +26,12 @@ class GamePlayer extends Game { } public function stop():Void { + ticker.stop(); Lib.current.stage.removeEventListener(Event.ENTER_FRAME, onEnterFrame); } private function onEnterFrame(event:Event):Void { + ticker.tick(); var events = 0; for (event in data) { if (event.time <= ticker.time) {