]> git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/common/items/all.qc
Merge master into qc_physics_prehax (blame TimePath if it's completely broken)
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / items / all.qc
index 460f77fcbffd9127e567c679f83d31141ff2b57b..fa198bb8328b709f090c035663e896fd62b4f0c1 100644 (file)
@@ -4,11 +4,10 @@
 
 #include "all.inc"
 
-void ItemTest()
+void Dump_Items()
 {
-    ITEMS_FOREACH(it != NULL, LAMBDA({
-        print(strcat(etos(it), "\n"));
-        ITEM_SEND(Default, it);
+    ITEMS_FOREACH(true, LAMBDA({
+        ITEM_HANDLE(Show, it);
     }));
 }