1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-01-11 18:00:34 +00:00

Merge pull request #275 from jruderman/fall_alch_msg

Show correct message when trying to move from a high Brown Island cell to a Red Slime cell
This commit is contained in:
Zeno Rogue 2021-08-04 19:13:10 +02:00 committed by GitHub
commit 2ac3b6f949
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -950,7 +950,7 @@ void pcmove::tell_why_impassable() {
if(vmsg(miRESTRICTED))
blowaway_message(c2);
}
else if(isAlch(c2)) {
else if(anti_alchemy(c2, cwt.at)) {
if(vmsg(miRESTRICTED))
addMessage(XLAT("Wrong color!"));
}