Added Superior Gargoyle AOE warning (#999)

* Added Superior Gargoyle AOE ID to Projectile

* Added Superior Gargoyle AOE warning
This commit is contained in:
Justin
2019-07-14 23:57:06 +10:00
committed by Kyleeld
parent aa0014f5df
commit 379bc98c39
2 changed files with 8 additions and 3 deletions

View File

@@ -123,7 +123,12 @@ public enum AoeProjectileInfo
/**
* Demonic gorilla
*/
DEMONIC_GORILLA_BOULDER(ProjectileID.DEMONIC_GORILLA_BOULDER, 1);
DEMONIC_GORILLA_BOULDER(ProjectileID.DEMONIC_GORILLA_BOULDER, 1),
/**
* Marble gargoyle (Superior Gargoyle)
*/
MARBLE_GARGOYLE_AOE(ProjectileID.MARBLE_GARGOYLE_AOE, 1);
private static final Map<Integer, AoeProjectileInfo> map = new HashMap<>();