forked from github/server
320bcb2121
great bows should be allowed for all, not just elves
8 lines
174 B
Lua
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
|