1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-13 08:59:27 +00:00

removed Witch and Evil Golem from the polymorph list; replaced them with Falling Dog and Mutant

This commit is contained in:
Zeno Rogue 2019-04-05 13:43:32 +02:00
parent 6a8d2b9046
commit e4ad1c07a3

View File

@ -911,9 +911,9 @@ void poly_attack(cell *dest) {
auto polymonsters = {
moYeti, moRunDog, moHunterDog, moRanger,
moDesertman, moMonkey, moZombie, moCultist,
moWitch, moEvilGolem, moFamiliar, moOrangeDog,
moFallingDog, moMutant, moFamiliar, moOrangeDog,
moRedFox, moFalsePrincess, moResearcher,
moNarciss, moJiangshi
moNarciss, moJiangshi,
};
int ssf = 0;
eMonster target = *(polymonsters.begin() + hrand(isize(polymonsters)));