Free sound effects?

Here’s a better alternative that I would love to see forums implement:

public bool canReply(int user_post_number, int thread_age_days) {
    if (thread_age_days > user_post_number)
        return false;
    return true;
}
1 Like