-Fixed action assignation follow up r16837,r16836,r16835

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@16838 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
glighta 2012-10-29 07:24:53 +00:00
parent 202ec893fa
commit 8b074051ea

View File

@ -836,9 +836,9 @@ static void chrif_char_ask_name_answer(int acc, const char* player_name, uint16
}
if(type>0 && type<=5)
action = msg_txt(427+type); //block|ban|unblock|unban|change the sex of
sprintf(action,"%s",msg_txt(427+type)); //block|ban|unblock|unban|change the sex of
else
action = "???";
sprintf(action,"???");
switch( answer ) {
case 0 : sprintf(output, msg_txt(424), action, NAME_LENGTH, player_name); break;