Re: 2.08 and Incompatible Battle Reports
Eh... why bother with all the complicated methods of ensuring the calls happen in the right order. Instead, change:
if penetration+2d6 < MR+2d6
To:
if penetration < MR+2d6-2d6
Since both of the random calls are on the same side of the equation, the defined precendence order will ensure they are called in a consistent manner.
|