mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-09-22 20:14:05 +00:00
fixed the # and = pattern keys not working
This commit is contained in:
@@ -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;
|
||||
|
Reference in New Issue
Block a user