server/scripts/eressea/rules.lua
Enno Rehling 320bcb2121 http://bugs.eressea.de/view.php?id=1796
great bows should be allowed for all, not just elves
2010-08-17 23:34:50 -07:00

8 lines
174 B
Lua

function item_canuse(u, iname)
-- local race = u.race
-- if iname=="greatbow" then
-- -- only elves use greatbow
-- return race=="elf"
-- end
return true
end