proc
dobattle(mob/n,mob/m)
var/dmg=m.def-n.att
dmg<=0 ? dmg=0 : world<<dmg
Problem description:
loading BattleSys x2.dme
BattleSys x2.dm:4:error: expected ':'
BattleSys x2.dmb - 1 error, 0 warnings (double-click on an error to jump to it)
I've began to think that this isn't the correct usage for the ?: operator, or is this simply an error on my behalf?