mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-23 11:42:39 -06:00
17 lines
423 B
Python
17 lines
423 B
Python
|
class ShardStatusReceiver:
|
||
|
def __init__(self, air):
|
||
|
self.air = air
|
||
|
|
||
|
self.shards = {}
|
||
|
|
||
|
# Accept the shardStatus event:
|
||
|
self.air.accept('shardStatus', self.handleShardStatus)
|
||
|
|
||
|
self.air.sendNetEvent('queryShardStatus')
|
||
|
|
||
|
def handleShardStatus(self, channel, status):
|
||
|
self.shards.setdefault(channel, {}).update(status)
|
||
|
|
||
|
def getShards(self):
|
||
|
return self.shards
|