Open eriktorbjorn opened 4 years ago
The same error is repeated further down in TRAP-F
:
(<OR <AND <VERB? OPEN>
<NOT ,PRSI>>
<AND <VERB? SET>
<NOT ,PRSI>>>
<COND (<IN? ,MOUSE ,TRAP>
<TELL "A " D ,DEAD-MOUSE " is in it!" CR>)
(<FSET? ,TRAP ,RMUNGBIT>
<FCLEAR ,TRAP ,RMUNGBIT>
<TELL "Painstakingly, you set the trap." CR>
<RTRUE>)
(T
<RASH-ACT T>)>)
If you catch the mouse with the mouse trap, you'll get a dead mouse. Judging by
TRAP-F
it's supposed to mention the dead mouse if it's in the trap:But it doesn't because it checks
<IN? ,MOUSE ,TRAP>
where it should presumably be<IN? ,DEAD-MOUSE ,TRAP>
.