Skip to content

Commit fab9012

Browse files
committed
Fixed issue with passing PlayerIter object to RecipientFilter.
Fixed RecipientFilter.__getitem__'s slice functionality to return a list instead of a map object. Fixed small issue in RecipientFilter.__repr__ where the comma and space were backwards.
1 parent 8a7bf2c commit fab9012

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

addons/source-python/packages/source-python/filters/recipients.py

+11-3
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
# Source.Python Imports
99
# Filters
1010
from _filters._recipients import _RecipientFilter
11+
# Players
12+
from players.entity import Player
1113

1214

1315
# =============================================================================
@@ -40,8 +42,8 @@ def __getitem__(self, item):
4042
if isinstance(item, slice):
4143

4244
# Return a mapping matching the given slice
43-
return map(self.get_recipient_index, range(*item.indices(
44-
len(self))))
45+
return list(map(
46+
self.get_recipient_index, range(*item.indices(len(self)))))
4547

4648
# Return the index at the given recipient slot
4749
return self.get_recipient_index[item]
@@ -56,13 +58,19 @@ def __iter__(self):
5658

5759
def __repr__(self):
5860
"""Return a readable representation of the recipient filter."""
59-
return '({0})'.format(' ,'.join(map(str, self)))
61+
return '({0})'.format(', '.join(map(str, self)))
6062

6163
def merge(self, iterable):
6264
"""Merge the given recipient."""
6365
# Loop through all indexes of the given recipient
6466
for index in iterable:
6567

68+
# Get the index if a Player object was passed
69+
# This is also a fix for PlayerIter now
70+
# only iterating over Player instances.
71+
if isinstance(index, Player):
72+
index = index.index
73+
6674
# Add the current index to the recipient filter
6775
self.add_recipient(index)
6876

0 commit comments

Comments
 (0)