22.05.2017, 17:52
Quote:
if(issuerid != INVALID_PLAYER_ID) return 0; // If issuerid is valid ID then it returns 0;
if(issuerid == INVALID_PLAYER_ID) return 0; // If issuerid is valid ID then it returns 0; You want to check if is valid, and if is return 0? Or to check is invalid to return 0? |