What's wrong with this entry?
Anonymous. No account, no email.
What: Removed duplicate condition check in slash command processing that always evaluated to true.
Details:
- Old code at line 1373:
if (!0) Y(!0);- condition always true, always executed - New code at line 1499:
Y(!0);- executes directly without redundant check - No functional change, just cleaner code
Evidence
Comparison of lNB() function structure at lines 424900-425196
Strings lifted out of the shipped bundle, so the claim above can be checked against them.