From 397a64c4b599236f20c27fb58489fdc4748378df Mon Sep 17 00:00:00 2001 From: Myk Taylor Date: Mon, 6 Feb 2023 02:58:11 -0800 Subject: [PATCH] don't print out how many items there are in the world --- plugins/cleanowned.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/plugins/cleanowned.cpp b/plugins/cleanowned.cpp index 86ef0a2e1..3fece8bfe 100644 --- a/plugins/cleanowned.cpp +++ b/plugins/cleanowned.cpp @@ -74,8 +74,6 @@ command_result df_cleanowned (color_ostream &out, vector & parameters) return CR_FAILURE; } - out.print("Found total %zd items.\n", world->items.all.size()); - for (std::size_t i=0; i < world->items.all.size(); i++) { df::item * item = world->items.all[i];