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

@@ -82,9 +82,9 @@ public class ProjectileID
public static final int CERB_FIRE = 1247; public static final int CERB_FIRE = 1247;
/** /**
* missing: marble gargoyle, superior dark beast * missing: superior dark beast
*/ */
public static final int MARBLE_GARGOYLE_AOE = 1453;
/** /**
* non AOE, regular projectiles * non AOE, regular projectiles
*/ */

View File

@@ -123,7 +123,12 @@ public enum AoeProjectileInfo
/** /**
* Demonic gorilla * 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<>(); private static final Map<Integer, AoeProjectileInfo> map = new HashMap<>();