Clan name showing twice before player's nameFixed
Hi, I'm using Rust:IO Clans and the clan appears twice before the player's name.
I'm not even using the Clan Tags plugin, what could be the cause?
Any solution for double Clan tags?
would love to know how to fix this :)
should be fixed with new update,
Thanks Cosa!@!!!!!

Merged post

not fixed! still the same 
Will look again into it. Kinda a mess with all that different clan plugins.
2.0.0 solved the double clan tags with Rust:IO Clans, thank you CosaNostra.
haha ok np Will try it again but I deleted all my files (data,lang,config,cs) and placed new version in and same double clan tags was there.

Give me a few min will check again

Merged post

any ETA on this ? cuz its not fixed yet

made a fix myself. 

I am gussing its broken for me still because i use RustIO:Clans.

Here is the fix:

 

Step1: Look for the following code in the cs file-

        private string GetClan(BasePlayer player)
        {
            if (_isClansReborn || _isClansIo || Clans == null) return null;
            var clan = (string)Clans.Call("GetClanOf", player.UserIDString);
            if (clan == null) return null;
            var format = string.Format("[" + clan + "] ");
            return format;
        }

Step2: Now change this-

var format = string.Format("[" + clan + "] ");

to this-

var format = string.Format("");

Done :)

2.0.0 fixed it for me and I'm also using Rust:IO Clans.
well then idk why but i deleted every single file that has to do with the plugin.

Still double tags.

Like i said I fixed it by removing that
Locked automatically