1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-18 03:09:59 +00:00

pattern 'k' option

This commit is contained in:
Zeno Rogue 2019-09-13 00:32:05 +02:00
parent d1faa2011c
commit 9a0507ba58

View File

@ -1623,6 +1623,10 @@ EX namespace patterns {
}
return res;
}
case 'k': {
/* just keep the old color */
return c->landparam;
}
}
return canvasback;
}