1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-24 02:17:40 +00:00

place items command line option

This commit is contained in:
Zeno Rogue
2017-09-30 11:39:00 +02:00
parent d7cc886197
commit 064435aea1
2 changed files with 15 additions and 0 deletions

View File

@@ -5328,6 +5328,15 @@ void restoreGolems(int qty, eMonster m, int hp = 0) {
}
}
void placeItems(int qty, eItem it) {
int dcs = size(dcal);
for(int i=1; qty && i<dcs; i++) {
cell *c = dcal[i];
if(!c->monst && !c->item && passable(c, NULL, 0))
c->item = it, qty--;
}
}
cell *recallCell;
bool activateRecall() {