From: CobraMUSH <cobramush@nveid.com>
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=add0103aeff5ca85ae24a48758681cebd4cad22f;p=cobramush.git

hastype() had forgotten the Division type
---

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))