mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-12-24 01:00:25 +00:00
fixed the # and = pattern keys not working
This commit is contained in:
parent
4fc3c73855
commit
6a94eef6aa
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user