Hi all,

Im using Voron's libcod version on COD2 1.3. Everything is working (mysql etc), however the playercommand function isnt.
It doesnt iprint the input and looks like the function is not called. Am I missing something or is it not suitable for 1.3?
Code:
CodeCallback_PlayerCommand(args) 
{ 
    if (isDefined(args[0])) 
    { 
        command = ""; 
        for (i = 0; i < args.size; i++) 
            command = command + args[i] + " "; 

        iprintln(command); 
    } 
}