Skip to content

Commit

Permalink
fix: mixed up moa sounds
Browse files Browse the repository at this point in the history
  • Loading branch information
bconlon1 committed Oct 3, 2024
1 parent 66bb372 commit ee340db
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
// 1.20.1 2024-09-22T15:03:11.3444864 Sound Definitions
5039ff38a6c8120948fd806d66a07314eec116ce assets/aether/sounds.json
// 1.20.1 2024-10-03T12:51:46.1787987 Sound Definitions
64737c20b579d9b85f06e60db1938c7cbdc2fedd assets/aether/sounds.json
6 changes: 3 additions & 3 deletions src/generated/resources/assets/aether/sounds.json
Original file line number Diff line number Diff line change
Expand Up @@ -295,13 +295,13 @@
},
"entity.moa.ambient": {
"sounds": [
"aether:entity/moa/death"
"aether:entity/moa/say"
],
"subtitle": "subtitles.aether.entity.moa.ambient"
},
"entity.moa.death": {
"sounds": [
"aether:entity/moa/hurt"
"aether:entity/moa/death"
],
"subtitle": "subtitles.aether.entity.moa.death"
},
Expand All @@ -319,7 +319,7 @@
},
"entity.moa.hurt": {
"sounds": [
"aether:entity/moa/say"
"aether:entity/moa/hurt"
],
"subtitle": "subtitles.aether.entity.moa.hurt"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -392,15 +392,15 @@ public void registerSounds() {
).subtitle("subtitles.block.generic.footsteps")
);
this.add(AetherSoundEvents.ENTITY_MOA_AMBIENT,
definition().with(sound("aether:entity/moa/death"))
definition().with(sound("aether:entity/moa/say"))
.subtitle("subtitles.aether.entity.moa.ambient")
);
this.add(AetherSoundEvents.ENTITY_MOA_DEATH,
definition().with(sound("aether:entity/moa/hurt"))
definition().with(sound("aether:entity/moa/death"))
.subtitle("subtitles.aether.entity.moa.death")
);
this.add(AetherSoundEvents.ENTITY_MOA_HURT,
definition().with(sound("aether:entity/moa/say"))
definition().with(sound("aether:entity/moa/hurt"))
.subtitle("subtitles.aether.entity.moa.hurt")
);
this.add(AetherSoundEvents.ENTITY_MOA_SADDLE,
Expand Down

0 comments on commit ee340db

Please sign in to comment.