Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion rivescript/sorting.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def __init__(self, pattern, index, weight, inherit = sys.maxsize):
self.option = self.alphabet.count('[') + self.alphabet.count('(') # Number of option 0 < 1

if self.star > 0:
if self.pound == 0 & self.under == 0 & self.option == 0: # Place single star last in the rank
if (self.pound == 0) & (self.under == 0) & (self.option == 0): # Place single star last in the rank
self.pound = sys.maxsize
self.under = sys.maxsize
self.option = sys.maxsize
Expand Down