From 8de433723c2e9f4915c94004d8188b202b2cbb5e Mon Sep 17 00:00:00 2001 From: Devin Pentecost Date: Sat, 25 Aug 2018 15:59:48 -0700 Subject: [PATCH] Fix Fix --- lib/SeededRandomSequence/SeededRandomSequence.gd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/SeededRandomSequence/SeededRandomSequence.gd b/lib/SeededRandomSequence/SeededRandomSequence.gd index 12bdf24..88133fb 100644 --- a/lib/SeededRandomSequence/SeededRandomSequence.gd +++ b/lib/SeededRandomSequence/SeededRandomSequence.gd @@ -57,7 +57,7 @@ func get_at_index(index): #Note: This WILL update the sequence to that index if it is further than the current index! #We need to generate numbers until we get to this index - while index > self._result_sequence.size(): + while index >= self._result_sequence.size(): #We need to keep generating more self.next()