From 8320f8bb629c747cde7f60a353fd831785ce477c Mon Sep 17 00:00:00 2001 From: Christian 'ketura' McCarty Date: Mon, 22 Apr 2024 19:33:40 -0500 Subject: [PATCH] Removing debugger statements --- gemp-lotr/gemp-lotr-async/src/main/web/includes/account.html | 3 +-- gemp-lotr/gemp-lotr-async/src/main/web/js/gemp-022/statsUi.js | 1 - 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/gemp-lotr/gemp-lotr-async/src/main/web/includes/account.html b/gemp-lotr/gemp-lotr-async/src/main/web/includes/account.html index cc844e76f..b91137dd0 100644 --- a/gemp-lotr/gemp-lotr-async/src/main/web/includes/account.html +++ b/gemp-lotr/gemp-lotr-async/src/main/web/includes/account.html @@ -9,8 +9,7 @@ $("#accountName").html(chat.userName); $("#pocketDiv").html(formatPrice(hall.pocketValue)); - - debugger; + if(chat.userInfo.hasTrophies) { $("#trophyMigrate").show(); } diff --git a/gemp-lotr/gemp-lotr-async/src/main/web/js/gemp-022/statsUi.js b/gemp-lotr/gemp-lotr-async/src/main/web/js/gemp-022/statsUi.js index ab90ae87b..549ca3df0 100644 --- a/gemp-lotr/gemp-lotr-async/src/main/web/js/gemp-022/statsUi.js +++ b/gemp-lotr/gemp-lotr-async/src/main/web/js/gemp-022/statsUi.js @@ -46,7 +46,6 @@ var StatsUI = Class.extend({ var getPercentage = (num1, num2) => Number(num1 / num2).toLocaleString(undefined, {style: 'percent', minimumFractionDigits:2}); - debugger; $("#startDateSpan").html(json["startDate"]); $("#endDateSpan").html(json["endDate"]); $("#activePlayersStat").html(json["activePlayers"]);