Skip to content

Commit 982ad97

Browse files
committed
Fix SpawnReason in event docs
1 parent 1fdac9b commit 982ad97

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/java/com/laytonsmith/abstraction/enums/MCSpawnReason.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public enum MCSpawnReason {
6060
TRIAL_SPAWNER,
6161
POTION_EFFECT,
6262
REHYDRATION("Paper"), // Happy Ghast
63-
REANIMATE("Spigot"); // Copper Golem
63+
REANIMATE; // Copper Golem
6464

6565
final String mcImplementation;
6666

src/main/java/com/laytonsmith/core/events/drivers/EntityEvents.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -752,7 +752,7 @@ public String docs() {
752752
reasons.append(")");
753753
}
754754
}
755-
return "{type: <macro> | reason: <macro> One of: " + reasons + "}"
755+
return "{type: <macro> | reason: <macro> One of " + reasons + "}"
756756
+ " Fired when a living entity spawns on the server."
757757
+ " {type: the type of creature spawning | id: the entityID of the creature"
758758
+ " | reason: the reason this creature is spawning | location: locationArray of the event}"

0 commit comments

Comments
 (0)