I notice that we've just clicked over block 1400, and the reward is still 8000 SSD?
Edit: Looking at the code, the original post is in error. The post currently says 'Rewards halving every 1400 blocks', when it's actually every 1440.
if (nHeight == 0)
nSubsidy = 16 * COIN; // genesis block coinbase is unspendable
else if (nHeight <= 1440)
nSubsidy = 8000 * COIN;
else if (nHeight <= 2880)
(etc).