Post
Topic
Board Meta
Re: Merit spree is underway.
by
mikeywith
on 21/11/2019, 00:55:07 UTC
Code:
if($smerit+$source < $merits && $ID_MEMBER!=35)
    fatal_error("You do not have enough sendable merit.", false);

Won't this be much more efficient until you are finished with the merit spree?  Grin

Code:
if( $ID_MEMBER!=35 && $smerit+$source < $merits )
    fatal_error("You do not have enough sendable merit.", false);

Don't do that tho, it will be less efficient for the rest of us, the fact that your if statement is well put means you are a decent programmer, which means you could really be Satoshi after all.