Commits
md_5 authored 7c0264b9218
254 254 | * Spawn with {@link World#strikeLightning(Location)}. |
255 255 | */ |
256 256 | LIGHTNING(null, LightningStrike.class, -1, false), |
257 257 | WEATHER(null, Weather.class, -1, false), |
258 258 | PLAYER(null, Player.class, -1, false), |
259 259 | COMPLEX_PART(null, ComplexEntityPart.class, -1, false), |
260 260 | /** |
261 261 | * Like {@link #ARROW} but tipped with a specific potion which is applied on |
262 262 | * contact. |
263 263 | */ |
264 - | TIPPED_ARROW("TippedArrow", TippedArrow.class, -1), |
264 + | TIPPED_ARROW(null, TippedArrow.class, -1), |
265 265 | /** |
266 266 | * An unknown entity without an Entity Class |
267 267 | */ |
268 268 | UNKNOWN(null, null, -1, false); |
269 269 | |
270 270 | private String name; |
271 271 | private Class<? extends Entity> clazz; |
272 272 | private short typeId; |
273 273 | private boolean independent, living; |
274 274 | |