diff --git a/Player/Player.cs b/Player/Player.cs index d33e97a1c..ce6d33d04 100644 --- a/Player/Player.cs +++ b/Player/Player.cs @@ -305,8 +305,8 @@ namespace MCGalaxy { bool isOwner = Server.server_owner != "" && Server.server_owner.CaselessEq(name); string viptitle = isDev ? string.Format("{0}[&9Dev{0}] ", color) : - isMod ? string.Format("{0}[{&aMod{0}] ", color) : - isOwner ? string.Format("{0}[{&cOwner{0}] ", color) : ""; + isMod ? string.Format("{0}[&aMod{0}] ", color) : + isOwner ? string.Format("{0}[&cOwner{0}] ", color) : ""; prefix = prefix + viptitle; prefix = (title == "") ? prefix : prefix + color + "[" + titlecolor + title + color + "] "; }