From: CobraMUSH Date: Tue, 4 Mar 2008 20:34:37 +0000 (+0000) Subject: hastype() had forgotten the Division type X-Git-Url: https://git.theari.com/?a=commitdiff_plain;h=e61ccfe14da7d6ee759c4f666c8002ef0df26171;p=cobramush.git hastype() had forgotten the Division type (cherry picked from commit add0103aeff5ca85ae24a48758681cebd4cad22f) --- diff --git a/src/fundb.c b/src/fundb.c index b6665d9..0cdcfbd 100644 --- a/src/fundb.c +++ b/src/fundb.c @@ -1026,6 +1026,11 @@ FUNCTION(fun_hastype) if (IsThing(it)) found = 1; break; + case 'd': + case 'D': + if (IsDivision(it)) + found = 1; + break; case 'g': case 'G': if (IsGarbage(it))