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
1 changed files with 1 additions and 1 deletions

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)) {