Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion debug.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ vector<cheatkey> cheats = {
cheatkey{'R'-64, "advance the rose wave", buildRosemap},
#if CAP_EDIT
cheatkey{'A', "start the Map Editor", [] {
lastexplore = turncount;
lastexplore = shmup::on ? shmup::curtime : turncount;
pushScreen(mapeditor::showMapEditor);
}},
cheatkey{'A'-64, "start the Vector Graphics Editor", [] {
Expand Down
2 changes: 1 addition & 1 deletion menus.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ EX void showCreative() {
dialog::cheat_if_confirmed([] {
cheater++;
pushScreen(mapeditor::showMapEditor);
lastexplore = turncount;
lastexplore = shmup::on ? shmup::curtime : turncount;
addMessage(XLAT("You activate your terraforming powers!"));
});
});
Expand Down
2 changes: 1 addition & 1 deletion rogueviz/fifteen.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ bool fifteen3 = true;

bool draw_fifteen(cell *c, const shiftmatrix& V) {
hr::addaura(tC0(V), darkened(0x0000FF), 0);
lastexplore = turncount;
lastexplore = shmup::on ? shmup::curtime : turncount;
if(!fif.count(c)) { c->land = laNone; c->wall = waChasm; c->item = itNone; c->monst = moNone; return false; }
check_move();

Expand Down