Skip to content

Commit

Permalink
fix: removed GameThread from player_spawn because it's not threadsafe
Browse files Browse the repository at this point in the history
  • Loading branch information
derkalle4 committed Aug 22, 2016
1 parent 888647a commit fb004dc
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions conquest/rank.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,10 +206,6 @@ def player_spawn_logic(self, userid):
msg('ERROR', 'player spawn logic did not work')

def player_spawn(self, userid):
t = GameThread(target=self._player_spawn, args=(userid, ))
t.start()

def _player_spawn(self, userid):
try:
player = Player.from_userid(userid)
if not player.address or player.steamid == 'BOT':
Expand Down

0 comments on commit fb004dc

Please sign in to comment.