1
0
Fork 0
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:
Chris-plus-alphanumericgibberish 2015-01-09 16:10:38 -05:00
parent 00326f7495
commit 094ed27196
2 changed files with 5 additions and 3 deletions

View file

@ -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 &&

View file

@ -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!");