Skip to content

Commit

Permalink
REmove playMood
Browse files Browse the repository at this point in the history
  • Loading branch information
frondeus committed Mar 5, 2022
1 parent 56f3801 commit 1c02d9d
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/syrin/services/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export class Api {
}

const soundsets = await this.raw.getSoundsets();
console.warn("SyrinControl | Online Soundsets", soundsets);
//console.warn("SyrinControl | Online Soundsets", soundsets);
return soundsets
.map((soundset) => {
return {
Expand Down
1 change: 0 additions & 1 deletion src/syrin/services/game.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import { MODULE } from './utils';

export interface Global {
playElement(id: number): Promise<void>;
playMood(id: number): Promise<void>;
refresh(): void;
}

Expand Down
2 changes: 1 addition & 1 deletion src/syrin/services/raw.ts
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ export class RawApiImpl implements RawApi {
function link() {
let address = utils.getAddress();
let authToken = utils.getAuth();
console.warn("SyrinControl | Address: ", address);
//console.warn("SyrinControl | Address: ", address);
return `${address}/soundsets/?auth_token=${authToken}`;
}

Expand Down
4 changes: 0 additions & 4 deletions src/syrin/settings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,6 @@ export function initSettings(ctx: Context) {
playElement: async (id: number) => {
await api.playElement(id);
},
playMood: async (_id: number) => {
//TODO:
console.warn('SyrinControl | Im sorry this feature is under development');
},
refresh: () => {
ctx.stores.refresh();
}
Expand Down

0 comments on commit 1c02d9d

Please sign in to comment.