mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-11-01 01:07:54 +00:00
04233eb9f3
This reverts commit ad91b21823
.
12 lines
234 B
Python
12 lines
234 B
Python
|
|
|
|
class PotentialShard:
|
|
|
|
def __init__(self, id):
|
|
self.id = id
|
|
self.name = None
|
|
self.population = 0
|
|
self.welcomeValleyPopulation = 0
|
|
self.active = 1
|
|
self.available = 1
|
|
return
|