What should be a simple macro is throwing me for a loop right now, basically it's suppose to add 1d6+1+3 then divide the number by two and round down, but when I rolled a 4 on the d6 it gave me a result of 6 when 4+1+3=8 which divided by two is 4. [[floor(1d6+1+3/2)]] What am I doing wrong here?