-
-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 | ||
From: AlphaKR93 <[email protected]> | ||
Date: Sat, 14 Dec 2024 12:25:43 +0900 | ||
Subject: [PATCH] Add option to shoot fireball | ||
|
||
|
||
diff --git a/src/main/java/org/bukkit/event/entity/CreatureSpawnEvent.java b/src/main/java/org/bukkit/event/entity/CreatureSpawnEvent.java | ||
index 361db256296d776c27e601c923b2cdc61967122b..8a740bdd99b683255fdd7ebf81f28ceca8b030f8 100644 | ||
--- a/src/main/java/org/bukkit/event/entity/CreatureSpawnEvent.java | ||
+++ b/src/main/java/org/bukkit/event/entity/CreatureSpawnEvent.java | ||
@@ -224,6 +224,12 @@ public class CreatureSpawnEvent extends EntitySpawnEvent { | ||
/** | ||
* When an entity is missing a SpawnReason | ||
*/ | ||
- DEFAULT | ||
+ DEFAULT, | ||
+ // Plazma start - Option to shoot fireballs | ||
+ /* | ||
+ * When a player shoots a fire charge | ||
+ */ | ||
+ FIRE_CHARGE, | ||
+ // Plazma end - Option to shoot fireballs | ||
} | ||
} |