diff --git a/src/Utils.gd b/src/Utils.gd index 79b34a9..3ebb189 100644 --- a/src/Utils.gd +++ b/src/Utils.gd @@ -6,6 +6,7 @@ static func is_between(m, val, x): static func format_time(value): + # warning-ignore: NARROWING_CONVERSION var minutes: int = floor(value / 60) var seconds_and_millis: float = value - minutes * 60 var seconds: int = int(seconds_and_millis)