Open eriktorbjorn opened 5 years ago
Nathan Simpson's bug list also mentions that you can remove spells from your spell book by throwing them. You can't in Sorcerer and Spellbreaker, and it seems to be because there SPELL-F
handles the THROW
action.
I think the root of the problem is that scrolls are transparent containers with capacity 0.
V-OPEN
imposes the rules that to be openable, the object has to be a container, and either be a door or have a capacity. A non-door with capacity 0 will fail to open.V-REZROV
, on the other hand, only requires it to be a container.Both Sorcerer and Spellbreaker check for
SCROLLBIT
inV-REZROV
, so I guess that check should be added here too.