From ef827ff865cee2da37dc49ba29e42676598c3582 Mon Sep 17 00:00:00 2001 From: Jake Date: Tue, 3 Dec 2024 15:16:45 +0100 Subject: [PATCH] Update ExprTimes.sk --- src/test/skript/tests/syntaxes/expressions/ExprTimes.sk | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/test/skript/tests/syntaxes/expressions/ExprTimes.sk b/src/test/skript/tests/syntaxes/expressions/ExprTimes.sk index 5001a78ade0..edb09f9080a 100644 --- a/src/test/skript/tests/syntaxes/expressions/ExprTimes.sk +++ b/src/test/skript/tests/syntaxes/expressions/ExprTimes.sk @@ -6,3 +6,7 @@ test "times": add 1 to {_count} assert {_count} is 3 with "count was %{_count}% instead of 3" assert {_three} is 3 with "original number wasn't 3" + set {_count} to 0 + loop thrice: + add 1 to {_count} + assert {_count} is 3 with "thrice count was %{_count}% instead of 3"