Skip to content

Commit d755256

Browse files
committed
Fixed _PlayerWeapons.set_weapon_color to take a Color object instead of rgba values.
1 parent 2de5d44 commit d755256

File tree

1 file changed

+2
-2
lines changed
  • addons/source-python/packages/source-python/players/weapons

1 file changed

+2
-2
lines changed

addons/source-python/packages/source-python/players/weapons/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -383,7 +383,7 @@ def get_weapon_color(self):
383383
# Return the entity's color
384384
return Entity(index).color
385385

386-
def set_weapon_color(self, red, green, blue, alpha=None):
386+
def set_weapon_color(self, color):
387387
"""Set the player's active weapon's color."""
388388
# Get the handle of the player's active weapon
389389
handle = self.active_weapon
@@ -399,7 +399,7 @@ def set_weapon_color(self, red, green, blue, alpha=None):
399399
'No active weapon found for player "{0}"'.format(self.userid))
400400

401401
# Set the entity's color
402-
Entity(index).color = (red, green, blue, alpha)
402+
Entity(index).color = color
403403

404404

405405
# =============================================================================

0 commit comments

Comments
 (0)