refactor: use add time in client (#636)

This commit is contained in:
Alex Christoffer Rasmussen
2023-12-08 21:46:29 +01:00
committed by GitHub
parent 1343818917
commit abe27d54a2
2 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -75,8 +75,8 @@ export const setPlayback = {
reload: () => {
socketSendJson('reload');
},
delay: (amount: number) => {
socketSendJson('delay', amount);
addTime: (amount: number) => {
socketSendJson('addtime', amount);
},
};