an explanation;

when you code the statement like this;
Code:
delete placePlayers();
what you are asking the compiler to do is first execute the function, then delete the return value of the function (which in this case is probably nothing).


when you code the statement like this;
Code:
delete placePlayers;
you are asking the compiler to delete the function.