Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Rename 'matches' selector to 'name'
  • Loading branch information
theCalcaholic committed Dec 13, 2017
commit d3d298701e86a933ea8db6c8798bedd093d28364
2 changes: 1 addition & 1 deletion Essentials/Commands/CleanupModule.cs
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ private IEnumerable<MyCubeGrid> ScanConditions(IReadOnlyList<string> args)
case "ownedby":
conditions.Add(g => OwnedBy(g, parameter));
break;
case "matches":
case "name":
conditions.Add(g => NameMatches(g, parameter));
break;
default:
Expand Down