Hot Fix report
This commit is contained in:
parent
46cb9333e6
commit
2cf99df2da
@ -104,14 +104,13 @@ export class ReportMenu extends Phaser.GameObjects.DOMElement {
|
|||||||
gamePError.innerText = '';
|
gamePError.innerText = '';
|
||||||
gamePError.style.display = 'none';
|
gamePError.style.display = 'none';
|
||||||
const gameTextArea = this.getChildByID('gameReportInput') as HTMLInputElement;
|
const gameTextArea = this.getChildByID('gameReportInput') as HTMLInputElement;
|
||||||
const gameIdUserReported = this.getChildByID('idUserReported') as HTMLInputElement;
|
if(!gameTextArea || !gameTextArea.value){
|
||||||
if(!gameTextArea || !gameTextArea.value || !gameIdUserReported || !gameIdUserReported.value){
|
|
||||||
gamePError.innerText = 'Report message cannot to be empty.';
|
gamePError.innerText = 'Report message cannot to be empty.';
|
||||||
gamePError.style.display = 'block';
|
gamePError.style.display = 'block';
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
gameManager.getCurrentGameScene(this.scene).connection.emitReportPlayerMessage(
|
gameManager.getCurrentGameScene(this.scene).connection.emitReportPlayerMessage(
|
||||||
parseInt(gameIdUserReported.value),
|
this.userId,
|
||||||
gameTextArea.value
|
gameTextArea.value
|
||||||
);
|
);
|
||||||
this.close();
|
this.close();
|
||||||
|
Loading…
Reference in New Issue
Block a user