mirror of
https://codeberg.org/noisytoot/notnotdnethack.git
synced 2025-05-17 13:05:06 +01:00
Fix Bug with reading Tie-dye
Also added t-shirts and fortune cookies to the read menu
This commit is contained in:
parent
00326f7495
commit
094ed27196
2 changed files with 5 additions and 3 deletions
|
@ -1092,8 +1092,10 @@ register const char *let,*word;
|
|||
(otmp->otyp == FORTUNE_COOKIE
|
||||
|| otmp->otyp == T_SHIRT
|
||||
)
|
||||
))
|
||||
)){
|
||||
bp[foo++] = otmp->invlet;
|
||||
allowall = TRUE;
|
||||
}
|
||||
}
|
||||
//Make an exception for readable artifacts.
|
||||
if (otmp->oartifact &&
|
||||
|
|
|
@ -44,8 +44,8 @@ doread()
|
|||
if(check_capacity((char *)0)) return (0);
|
||||
scroll = getobj(readable, "read");
|
||||
if(!scroll) return(0);
|
||||
|
||||
if(scroll->oartifact){
|
||||
|
||||
if(scroll->oartifact && !arti_mandala(scroll)){
|
||||
if(scroll->oartifact == ART_ROD_OF_SEVEN_PARTS){
|
||||
if (Blind) {
|
||||
You_cant("see the writing!");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue