mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-10-17 07:07:38 +00:00
tactic:: removed lasttactic in favor of specialland. No more treasures on Crossroads in equid lands. Fixed warped walls and CR4 in a4.
This commit is contained in:
@@ -680,7 +680,7 @@ namespace tactic {
|
||||
|
||||
int xr = vid.xres / 64;
|
||||
|
||||
if(on) record(firstland, items[treasureType(firstland)]);
|
||||
if(on) record(specialland, items[treasureType(specialland)]);
|
||||
|
||||
int xc = modecode();
|
||||
|
||||
@@ -725,7 +725,7 @@ namespace tactic {
|
||||
dialog::displayPageButtons(3, true);
|
||||
|
||||
uploadScore();
|
||||
if(on) unrecord(firstland);
|
||||
if(on) unrecord(specialland);
|
||||
|
||||
if(getcstat >= 1000 && getcstat < 1000 + size(landlist)) {
|
||||
int ld = landlist[getcstat-1000];
|
||||
@@ -741,7 +741,7 @@ namespace tactic {
|
||||
|
||||
keyhandler = [] (int sym, int uni) {
|
||||
if(uni >= 1000 && uni < 1000 + size(landlist)) {
|
||||
firstland = specialland = landlist[uni - 1000];
|
||||
specialland = landlist[uni - 1000];
|
||||
restartGame(tactic::on ? 0 : rg::tactic);
|
||||
}
|
||||
else if(uni == '0') {
|
||||
|
Reference in New Issue
Block a user