Remove free summon from safe zone

This commit is contained in:
Yann Dupont 01 2022-04-04 11:43:47 -04:00
parent 15cd1d8d9a
commit a346efc487
2 changed files with 3 additions and 4 deletions

View File

@ -2460,8 +2460,7 @@ MonoBehaviour:
*
In the safe zone, gladiators cannot hit you and you can spawn monsters for free,
but you still lose life blood'
In the safe zone, gladiators cannot hit you'
m_isRightToLeft: 0
m_fontAsset: {fileID: 11400000, guid: c7f37e7d394368840a37b9cf30036f5d, type: 2}
m_sharedMaterial: {fileID: 1016898183610204111, guid: c7f37e7d394368840a37b9cf30036f5d, type: 2}

View File

@ -90,8 +90,8 @@ public class MinionThrower : MonoBehaviour {
if (minionHealthCost >= vampireEntity.Health) {
return;
}
if (!movement.IsInSafeZone)
vampireEntity.TakeDamage(minionHealthCost, vampireEntity, intentional: true);
// if (!movement.IsInSafeZone)
vampireEntity.TakeDamage(minionHealthCost, vampireEntity, intentional: true);
currentCooldownTimer = playerStats.currentInitialCooldown;