From 4ccbb2f6838945cd57b39c1683d7de57587914b1 Mon Sep 17 00:00:00 2001 From: Martin Michelsen Date: Mon, 4 Dec 2023 22:54:59 -0800 Subject: [PATCH] don't disconnect when no combinations apply --- src/Items.cc | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/Items.cc b/src/Items.cc index e21c1d49..4fc6132b 100644 --- a/src/Items.cc +++ b/src/Items.cc @@ -247,10 +247,6 @@ void player_use_item(shared_ptr c, size_t item_index) { } catch (const out_of_range&) { } } - - if (!combo_applied) { - throw runtime_error("no combinations apply"); - } } if (should_delete_item) {