From 3c8959482d4fc8e7c8a5d5840b6e714ddf977dec Mon Sep 17 00:00:00 2001 From: ChocoTaco Date: Wed, 21 Aug 2019 15:51:03 -0400 Subject: [PATCH] Allow Bot skins --- Classic/scripts/server.cs | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/Classic/scripts/server.cs b/Classic/scripts/server.cs index 8e43f4e..4032b1f 100644 --- a/Classic/scripts/server.cs +++ b/Classic/scripts/server.cs @@ -789,12 +789,13 @@ function GameConnection::onConnect( %client, %name, %raceGender, %skin, %voice, else %client.nameBase = %realName; + //Allow - ChocoTaco // Make sure that the connecting client is not trying to use a bot skin: - %temp = detag( %skin ); - if ( %temp $= "basebot" || %temp $= "basebbot" ) - %client.skin = addTaggedString( "base" ); - else - %client.skin = addTaggedString( %skin ); + //%temp = detag( %skin ); + //if ( %temp $= "basebot" || %temp $= "basebbot" ) + // %client.skin = addTaggedString( "base" ); + //else + %client.skin = addTaggedString( %skin ); %client.voice = %voice; %client.voiceTag = addtaggedString(%voice);