]> git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Reduce the item registry capacity to 24 so it matches the limit for the .items field...
authorterencehill <piuntn@gmail.com>
Thu, 25 Jul 2019 07:22:37 +0000 (09:22 +0200)
committerterencehill <piuntn@gmail.com>
Thu, 25 Jul 2019 07:22:37 +0000 (09:22 +0200)
qcsrc/common/items/all.qh

index 623f71b3904ab7654d9e9e88e23291c45d84bb09..3ff4a54155a3cccaf0ea91b69a38a02ac90c15dc 100644 (file)
@@ -4,7 +4,8 @@
 
 #include "item.qh"
 
-REGISTRY(Items, BITS(7))
+// 24 so it matches the limit for the .items field
+REGISTRY(Items, 24)
 #define Items_from(i) _Items_from(i, NULL)
 #ifdef GAMEQC
 REGISTRY_DEPENDS(Items, Models)