We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d5288a commit 2ef698cCopy full SHA for 2ef698c
docs/changelog.txt
@@ -56,6 +56,7 @@ Template for new versions:
56
## New Features
57
58
## Fixes
59
+- small animals owned by traders can no longer be assigned to pits, ponds, and cages.
60
61
## Misc Improvements
62
plugins/lua/zone.lua
@@ -602,7 +602,9 @@ local function is_assignable_unit(unit)
602
end
603
604
local function is_assignable_item(item)
605
- -- all vermin/small pets are assignable
+ -- small pets owned by traders are not assignable
606
+ if item.flags.trader then return false end
607
+ -- other vermin/small pets are assignable
608
return true
609
610
0 commit comments