From e61ccfe14da7d6ee759c4f666c8002ef0df26171 Mon Sep 17 00:00:00 2001 From: CobraMUSH Date: Tue, 4 Mar 2008 20:34:37 +0000 Subject: [PATCH] hastype() had forgotten the Division type (cherry picked from commit add0103aeff5ca85ae24a48758681cebd4cad22f) --- src/fundb.c | 5 +++++ 1 file changed, 5 insertions(+) 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)) -- 2.30.2