diff -r f40e88cff863 -r 646711c5feaa src/ai/ai.h --- a/src/ai/ai.h Sun Apr 15 17:04:44 2007 +0000 +++ b/src/ai/ai.h Sat Apr 21 08:23:57 2007 +0000 @@ -77,8 +77,8 @@ return true; } -#define AI_CHANCE16(a,b) ((uint16) AI_Random() <= (uint16)((65536 * a) / b)) -#define AI_CHANCE16R(a,b,r) ((uint16)(r = AI_Random()) <= (uint16)((65536 * a) / b)) +#define AI_CHANCE16(a, b) ((uint16) AI_Random() <= (uint16)((65536 * a) / b)) +#define AI_CHANCE16R(a, b, r) ((uint16)(r = AI_Random()) <= (uint16)((65536 * a) / b)) /** * The random-function that should be used by ALL AIs.