Skip to content

Commit

Permalink
Fix Trail typos (#238)
Browse files Browse the repository at this point in the history
  • Loading branch information
Alemiz112 authored Jul 4, 2024
2 parents 1f3375f + c3c9c5c commit 3c07339
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ public class Bedrock_v649 extends Bedrock_v630 {
protected static final TypeMap<LevelEventType> LEVEL_EVENTS = Bedrock_v630.LEVEL_EVENTS.toBuilder()
.replace(LEVEL_EVENT_BLOCK + 109, LevelEvent.PARTICLE_SHOOT_WHITE_SMOKE)
.replace(LEVEL_EVENT_BLOCK + 110, LevelEvent.PARTICLE_WIND_EXPLOSION)
.insert(LEVEL_EVENT_BLOCK + 111, LevelEvent.PARTICLE_TRAIL_SPAWNER_DETECTION)

This comment has been minimized.

Copy link
@n15421

n15421 Jul 5, 2024

QwQ

.insert(LEVEL_EVENT_BLOCK + 112, LevelEvent.PARTICLE_TRAIL_SPAWNER_SPAWNING)
.insert(LEVEL_EVENT_BLOCK + 113, LevelEvent.PARTICLE_TRAIL_SPAWNER_EJECTING)
.insert(LEVEL_EVENT_BLOCK + 111, LevelEvent.PARTICLE_TRIAL_SPAWNER_DETECTION)
.insert(LEVEL_EVENT_BLOCK + 112, LevelEvent.PARTICLE_TRIAL_SPAWNER_SPAWNING)
.insert(LEVEL_EVENT_BLOCK + 113, LevelEvent.PARTICLE_TRIAL_SPAWNER_EJECTING)
.insert(LEVEL_EVENT_BLOCK + 114, LevelEvent.ALL_PLAYERS_SLEEPING)
.insert(LEVEL_EVENT_PARTICLE_TYPE, PARTICLE_TYPES)
.build();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ public class Bedrock_v685 extends Bedrock_v671 {

protected static final TypeMap<SoundEvent> SOUND_EVENTS = Bedrock_v671.SOUND_EVENTS
.toBuilder()
.insert(516, SoundEvent.TRAIL_SPAWNER_CHARGE_ACTIVATE)
.insert(517, SoundEvent.TRAIL_SPAWNER_AMBIENT_OMINOUS)
.insert(516, SoundEvent.TRIAL_SPAWNER_CHARGE_ACTIVATE)
.insert(517, SoundEvent.TRIAL_SPAWNER_AMBIENT_OMINOUS)
.insert(518, SoundEvent.OMINOUS_ITEM_SPAWNER_SPAWN_ITEM)
.insert(519, SoundEvent.OMINOUS_BOTTLE_END_USE)
.replace(521, SoundEvent.OMINOUS_ITEM_SPAWNER_SPAWN_ITEM_BEGIN)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,9 @@ public enum LevelEvent implements LevelEventType {
* @since v649
*/
PARTICLE_WIND_EXPLOSION,
PARTICLE_TRAIL_SPAWNER_DETECTION,
PARTICLE_TRAIL_SPAWNER_SPAWNING,
PARTICLE_TRAIL_SPAWNER_EJECTING,
PARTICLE_TRIAL_SPAWNER_DETECTION,
PARTICLE_TRIAL_SPAWNER_SPAWNING,
PARTICLE_TRIAL_SPAWNER_EJECTING,
/**
* @since v662
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -664,11 +664,11 @@ public enum SoundEvent {
/**
* @since v685
*/
TRAIL_SPAWNER_CHARGE_ACTIVATE,
TRIAL_SPAWNER_CHARGE_ACTIVATE,
/**
* @since v685
*/
TRAIL_SPAWNER_AMBIENT_OMINOUS,
TRIAL_SPAWNER_AMBIENT_OMINOUS,
/**
* @since v685
*/
Expand Down

0 comments on commit 3c07339

Please sign in to comment.