Skip to content

Commit

Permalink
No Commit Message
Browse files Browse the repository at this point in the history
  • Loading branch information
GoldenThrust committed Jan 22, 2025
1 parent af66644 commit 6ad17bd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion logic/game/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ function setFullScreen() {
}

document.onclick = () => {
setFullScreen();
setFullScreen();
}

window.addEventListener('resize', () => {
Expand Down
2 changes: 1 addition & 1 deletion logic/game/utils/function.js
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ export function killPlayer(cplayer, player, socket = null, powerUps = false, kil
playExplosion(cplayer.audiopanner)
logKill(cplayer, player);
if (socket) {
socket.emit('destroy', player, cplayer, true);
socket.emit('destroy', player, cplayer, powerUps);
}
if (kill) {
const kills = sessionStorage.getItem(`kill-${getGameId()}`) || 0;
Expand Down

0 comments on commit 6ad17bd

Please sign in to comment.