fixed some compiler errors
This commit is contained in:
parent
9234b95d5b
commit
6830058c2c
2 changed files with 4 additions and 5 deletions
|
@ -1189,17 +1189,17 @@ class ConnectionCommandHandler {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if(invoker == this.connection._client.getClient()) {
|
if(invoker == this.connection._client.getClient()) {
|
||||||
sound.play(Sound.MESSAGE_SEND, { background_notification: true });
|
sound.play(Sound.MESSAGE_SEND);
|
||||||
target.chat(true).appendMessage("{0}: {1}", true, this.connection._client.getClient().createChatTag(true), MessageHelper.bbcode_chat(json["msg"]));
|
target.chat(true).appendMessage("{0}: {1}", true, this.connection._client.getClient().createChatTag(true), MessageHelper.bbcode_chat(json["msg"]));
|
||||||
} else {
|
} else {
|
||||||
sound.play(Sound.MESSAGE_RECEIVED, { background_notification: true });
|
sound.play(Sound.MESSAGE_RECEIVED);
|
||||||
invoker.chat(true).appendMessage("{0}: {1}", true, ClientEntry.chatTag(json["invokerid"], json["invokername"], json["invokeruid"], true), MessageHelper.bbcode_chat(json["msg"]));
|
invoker.chat(true).appendMessage("{0}: {1}", true, ClientEntry.chatTag(json["invokerid"], json["invokername"], json["invokeruid"], true), MessageHelper.bbcode_chat(json["msg"]));
|
||||||
}
|
}
|
||||||
} else if(mode == 2) {
|
} else if(mode == 2) {
|
||||||
if(json["invokerid"] == this.connection._client.clientId)
|
if(json["invokerid"] == this.connection._client.clientId)
|
||||||
sound.play(Sound.MESSAGE_SEND, { background_notification: true });
|
sound.play(Sound.MESSAGE_SEND);
|
||||||
else
|
else
|
||||||
sound.play(Sound.MESSAGE_RECEIVED, { background_notification: true });
|
sound.play(Sound.MESSAGE_RECEIVED);
|
||||||
chat.channelChat().appendMessage("{0}: {1}", true, ClientEntry.chatTag(json["invokerid"], json["invokername"], json["invokeruid"], true), MessageHelper.bbcode_chat(json["msg"]))
|
chat.channelChat().appendMessage("{0}: {1}", true, ClientEntry.chatTag(json["invokerid"], json["invokername"], json["invokeruid"], true), MessageHelper.bbcode_chat(json["msg"]))
|
||||||
} else if(mode == 3) {
|
} else if(mode == 3) {
|
||||||
chat.serverChat().appendMessage("{0}: {1}", true, ClientEntry.chatTag(json["invokerid"], json["invokername"], json["invokeruid"], true), MessageHelper.bbcode_chat(json["msg"]));
|
chat.serverChat().appendMessage("{0}: {1}", true, ClientEntry.chatTag(json["invokerid"], json["invokername"], json["invokeruid"], true), MessageHelper.bbcode_chat(json["msg"]));
|
||||||
|
|
|
@ -319,7 +319,6 @@ namespace sound {
|
||||||
console.log(tr("Replaying %s"), path);
|
console.log(tr("Replaying %s"), path);
|
||||||
if(file.node) {
|
if(file.node) {
|
||||||
file.node.currentTime = 0;
|
file.node.currentTime = 0;
|
||||||
file.node.
|
|
||||||
file.node.play();
|
file.node.play();
|
||||||
} else {
|
} else {
|
||||||
if(!warned) {
|
if(!warned) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue