split assignment and return statement for gdscript
Some checks failed
/ test (push) Failing after 8s

This commit is contained in:
2025-10-30 19:22:39 -05:00
parent 8caad092be
commit a536cc8f41

View File

@@ -44,7 +44,8 @@ class Random {
* @return The new initial seed.
*/
public inline function resetInitialSeed():Int {
return initialSeed = rangeBound(Std.int(Math.random() * MAX_VALUE_INT));
initialSeed = rangeBound(Std.int(Math.random() * MAX_VALUE_INT));
return initialSeed;
}
/**