From 0f58df1b2f2e1412b1e79eabec728b5c41c92ef0 Mon Sep 17 00:00:00 2001 From: dis- Date: Mon, 20 May 2013 11:49:36 +0000 Subject: [PATCH] Weird Weapon should be enchanted only to TV_SWORD --- src/object2.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/object2.c b/src/object2.c index 725cf9115..baa719f5d 100644 --- a/src/object2.c +++ b/src/object2.c @@ -2318,6 +2318,8 @@ static void a_m_aux_1(object_type *o_ptr, int level, int power) continue; if (o_ptr->name2 == EGO_EARTHQUAKES && o_ptr->tval != TV_HAFTED) continue; + if (o_ptr->name2 == EGO_WEIRD && o_ptr->tval != TV_SWORD) + continue; break; } -- 2.11.0