Skip to content

Commit 236da3c

Browse files
committed
Add drum/joke reaction
1 parent 78a88a9 commit 236da3c

File tree

3 files changed

+11
-0
lines changed

3 files changed

+11
-0
lines changed

src/reactions/index.ts

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ import rockSoundOgg from "../sound/reactions/rock.ogg?url";
2727
import rockSoundMp3 from "../sound/reactions/rock.mp3?url";
2828
import waveSoundOgg from "../sound/reactions/wave.ogg?url";
2929
import waveSoundMp3 from "../sound/reactions/wave.mp3?url";
30+
import baduntssSoundOgg from "../sound/reactions/baduntss.ogg?url";
31+
import baduntssSoundMp3 from "../sound/reactions/baduntss.mp3?url";
3032

3133
export const ElementCallReactionEventType = "io.element.call.reaction";
3234

@@ -191,6 +193,15 @@ export const ReactionSet: ReactionOption[] = [
191193
mp3: waveSoundMp3,
192194
},
193195
},
196+
{
197+
emoji: "🥁",
198+
name: "drum",
199+
alias: ["joke"],
200+
sound: {
201+
ogg: baduntssSoundOgg,
202+
mp3: baduntssSoundMp3,
203+
},
204+
},
194205
];
195206

196207
export interface RaisedHandInfo {

src/sound/reactions/baduntss.mp3

81.2 KB
Binary file not shown.

src/sound/reactions/baduntss.ogg

76.1 KB
Binary file not shown.

0 commit comments

Comments
 (0)