diff --git a/MCGalaxy/Bots/PlayerBot.cs b/MCGalaxy/Bots/PlayerBot.cs index 634ba711d..8fc661e52 100644 --- a/MCGalaxy/Bots/PlayerBot.cs +++ b/MCGalaxy/Bots/PlayerBot.cs @@ -106,7 +106,7 @@ namespace MCGalaxy { PlayerBot[] bots = lvl.Bots.Items; int removedCount = 0; for (int i = 0; i < bots.Length; i++) { - if (bots[i].Owner.CaselessEq(ownerName)) { + if (ownerName.CaselessEq(bots[i].Owner)) { Remove(bots[i], save); removedCount++; }