Skip to content

Commit

Permalink
Add missing sound events (#257)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kaooot authored Aug 28, 2024
1 parent 0fc353e commit db4010f
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,12 @@ public class Bedrock_v630 extends Bedrock_v622 {
.insert(481, SoundEvent.DECORATED_POT_INSERT)
.insert(482, SoundEvent.DECORATED_POT_INSERT_FAILED)
.insert(483, SoundEvent.CRAFTER_DISABLE_SLOT)
.insert(484, SoundEvent.TRIAL_SPAWNER_OPEN_SHUTTER)
.insert(485, SoundEvent.TRIAL_SPAWNER_EJECT_ITEM)
.insert(486, SoundEvent.TRIAL_SPAWNER_DETECT_PLAYER)
.insert(487, SoundEvent.TRIAL_SPAWNER_SPAWN_MOB)
.insert(488, SoundEvent.TRIAL_SPAWNER_CLOSE_SHUTTER)
.insert(489, SoundEvent.TRIAL_SPAWNER_AMBIENT)
.insert(490, SoundEvent.COPPER_BULB_ON)
.insert(491, SoundEvent.COPPER_BULB_OFF)
.insert(492, SoundEvent.UNDEFINED)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -565,6 +565,30 @@ public enum SoundEvent {
* @since v630
*/
COPPER_BULB_OFF,
/**
* @since v630
*/
TRIAL_SPAWNER_OPEN_SHUTTER,
/**
* @since v630
*/
TRIAL_SPAWNER_EJECT_ITEM,
/**
* @since v630
*/
TRIAL_SPAWNER_DETECT_PLAYER,
/**
* @since v630
*/
TRIAL_SPAWNER_SPAWN_MOB,
/**
* @since v630
*/
TRIAL_SPAWNER_CLOSE_SHUTTER,
/**
* @since v630
*/
TRIAL_SPAWNER_AMBIENT,
/**
* @since v649
*/
Expand Down

0 comments on commit db4010f

Please sign in to comment.