Skip to content

Commit

Permalink
Fixed a bug with names not working when qlx_enforceSteamName was off.
Browse files Browse the repository at this point in the history
  • Loading branch information
MinoMino committed Dec 5, 2015
1 parent dd25a60 commit 1f72672
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions names.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,6 @@ def handle_player_loaded(self, player):
name_key = _name_key.format(player.steam_id)
if name_key in self.db:
db_name = self.db[name_key]
if self.clean_text(db_name) == player.clean_name:
return

if not self.get_cvar("qlx_enforceSteamName", bool) or self.clean_text(db_name).lower() == player.clean_name.lower():
self.name_set = True
player.name = db_name
Expand Down

0 comments on commit 1f72672

Please sign in to comment.