1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-02-21 13:30:09 +00:00

reduced the range of Fire Cultists to 2 if getDistLimit() < 4

This commit is contained in:
Zeno Rogue 2018-12-25 23:57:23 +01:00
parent 5bf27db481
commit 6ca2768641

View File

@ -5493,7 +5493,7 @@ void specialMoves() {
bool shot = false;
bool dont_approach = false;
// smaller range on the sphere
int firerange = sphere ? 2 : 4;
int firerange = (sphere || getDistLimit() < 5) ? 2 : 4;
for(int i=0; i<isize(targets); i++) {
cell *t = targets[i];
if(celldistance(c,t) <= firerange && makeflame(t, 20, true)) {