From 320bcb2121381555dff31191a3540d761f06fd29 Mon Sep 17 00:00:00 2001 From: Enno Rehling Date: Tue, 17 Aug 2010 23:34:50 -0700 Subject: [PATCH] http://bugs.eressea.de/view.php?id=1796 great bows should be allowed for all, not just elves --- scripts/eressea/rules.lua | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/scripts/eressea/rules.lua b/scripts/eressea/rules.lua index 5866a8ffc..8e2137a13 100644 --- a/scripts/eressea/rules.lua +++ b/scripts/eressea/rules.lua @@ -1,8 +1,8 @@ function item_canuse(u, iname) - local race = u.race - if iname=="greatbow" then - -- only elves use greatbow - return race=="elf" - end + -- local race = u.race + -- if iname=="greatbow" then + -- -- only elves use greatbow + -- return race=="elf" + -- end return true end