Skip to content
Snippets Groups Projects
Commit 5c1b7e0b authored by Egli Adrian (IT-SCI-API-PFI)'s avatar Egli Adrian (IT-SCI-API-PFI)
Browse files

.

parent f6f67e96
No related branches found
No related tags found
No related merge requests found
......@@ -434,7 +434,7 @@ class PILSVG(PILGL):
pilTrack = self.dScenery[0]
else:
pilTrack = self.dBuildings[a]
elif self.background_grid[col][row] > 5 or ((col + row + col * row) % 10 > 7):
elif (self.background_grid[col][row] > 5) or ((col**3 + row**2 + col * row) % 10 == 0):
a = int(self.background_grid[col][row]) - 5
a = a % len(self.dScenery)
if (col + row + col * row) % 10 > 2:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment