diff --git a/addons/source-python/packages/source-python/players/_base.py b/addons/source-python/packages/source-python/players/_base.py old mode 100644 new mode 100755 index 54c78dc6c..3755ff632 --- a/addons/source-python/packages/source-python/players/_base.py +++ b/addons/source-python/packages/source-python/players/_base.py @@ -226,14 +226,14 @@ def _is_bot(self): :rtype: bool """ - return self._is_bot + return self.is_fake_client() or self.steamid == 'BOT' def is_bot(self): """Return whether the player is a bot. :rtype: bool """ - return self.is_fake_client() or self.steamid == 'BOT' + return self._is_bot def is_in_a_vehicle(self): """Return whether the player is in a vehicle.