From 9ea891bf64ea2a5010cef02e1dcaefd5865df147 Mon Sep 17 00:00:00 2001 From: Anuken Date: Sun, 17 Apr 2022 20:31:49 -0400 Subject: [PATCH] Timer objective text --- core/src/mindustry/game/MapObjectives.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/src/mindustry/game/MapObjectives.java b/core/src/mindustry/game/MapObjectives.java index a20c870ef4..ea14723678 100644 --- a/core/src/mindustry/game/MapObjectives.java +++ b/core/src/mindustry/game/MapObjectives.java @@ -170,7 +170,8 @@ public class MapObjectives{ public float countup; public float duration = 60f * 30f; - public TimerObjective(float duration){ + public TimerObjective(String text, float duration){ + this.text = text; this.duration = duration; }