lopar-patch-1 #5
@ -69,7 +69,8 @@ function updateGameState(gameState) {
|
||||
const winnerDiv = document.createElement('div');
|
||||
winnerDiv.innerHTML = `<p>Battle End! Winner: ${gameState.winner}</p>`;
|
||||
document.body.appendChild(winnerDiv);
|
||||
submitButton.disabled = true;
|
||||
submitButton.style.display = 'none';
|
||||
targetSelector.style.display = 'none';
|
||||
clearInterval(pollInterval);
|
||||
} else {
|
||||
const aliveFighters = gameState.fighters.filter(fighter => fighter.hp > 0);
|
||||
@ -94,10 +95,14 @@ function updateGameState(gameState) {
|
||||
targetSelector.style.display = 'none';
|
||||
}
|
||||
|
||||
if (gameState.last_fighter === username) {
|
||||
const currentFighter = gameState.fighters.find(fighter => fighter.name === username);
|
||||
|
||||
if (gameState.last_fighter === username || currentFighter.hp <= 0) {
|
||||
submitButton.style.display = 'none';
|
||||
targetSelector.style.display = 'none';
|
||||
} else {
|
||||
submitButton.style.display = 'block';
|
||||
targetSelector.style.display = 'block';
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user