Global random for visual part in Marathon C99

pull/15/head
Tetro48 2023-06-14 12:36:23 +07:00
parent 52473c2787
commit c84635a007
No known key found for this signature in database
GPG Key ID: 4D50AA39E7DD5444
1 changed files with 3 additions and 3 deletions

View File

@ -330,9 +330,9 @@ function MarathonC99Game:drawScoringInfo()
{1, 1, 1, 1}
)
love.graphics.printf(
(self.slots[1] and self.slots[1] or love.math.random(4)) .. " " ..
(self.slots[2] and self.slots[2] or love.math.random(4)) .. " " ..
love.math.random(4),
(self.slots[1] and self.slots[1] or math.random(4)) .. " " ..
(self.slots[2] and self.slots[2] or math.random(4)) .. " " ..
math.random(4),
240, 80, 100, "left")
love.graphics.setColor(1,1,1,1)
end