1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-15 01:39:57 +00:00

fixed the # and = pattern keys not working

This commit is contained in:
Zeno Rogue 2019-10-12 14:40:42 +02:00
parent 4fc3c73855
commit 6a94eef6aa

View File

@ -1786,7 +1786,7 @@ EX namespace patterns {
};
}
else if((uni >= 'a' && uni <= 'z') || (uni >= 'A' && uni <= 'Z')) {
else if((uni >= 'a' && uni <= 'z') || (uni >= 'A' && uni <= 'Z') || among(uni, '#', '=')) {
if(instant)
stop_game();
whichCanvas = uni;