Skip to content

Commit

Permalink
Super quick fix for release, I am too tired.
Browse files Browse the repository at this point in the history
  • Loading branch information
UnknownShadow200 committed Jul 19, 2016
1 parent 843f806 commit 191d778
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Commands/CmdOverseer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ static string FirstMapName(Player p) {
}

static bool OwnsMap(Player p, Level lvl) {
return lvl.RealmOwner.CaselessEq(p.name) || p.level.name.CaselessEq(p.name);
return lvl.RealmOwner.CaselessEq(p.name) || p.level.name.CaselessStarts(p.name);
}

public override void Help(Player p) {
Expand Down

0 comments on commit 191d778

Please sign in to comment.