aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsyeyoung <cyoung06@naver.com>2023-02-27 01:17:12 +0900
committersyeyoung <cyoung06@naver.com>2023-02-27 01:17:12 +0900
commit6df27e36e0197f868d6a7203654adf8a9a595df6 (patch)
tree9ca8f92510c4c51e4780a4d7086f16fb32455100
parentebd9ebd7404f095d15bb259205a835a84310f22a (diff)
downloadSkyblock-Dungeons-Guide-6df27e36e0197f868d6a7203654adf8a9a595df6.tar.gz
Skyblock-Dungeons-Guide-6df27e36e0197f868d6a7203654adf8a9a595df6.tar.bz2
Skyblock-Dungeons-Guide-6df27e36e0197f868d6a7203654adf8a9a595df6.zip
- Remove debug messages
Signed-off-by: syeyoung <cyoung06@naver.com>
-rw-r--r--mod/src/main/java/kr/syeyoung/dungeonsguide/mod/features/impl/dungeon/FeatureDungeonScore.java2
1 files changed, 0 insertions, 2 deletions
diff --git a/mod/src/main/java/kr/syeyoung/dungeonsguide/mod/features/impl/dungeon/FeatureDungeonScore.java b/mod/src/main/java/kr/syeyoung/dungeonsguide/mod/features/impl/dungeon/FeatureDungeonScore.java
index 7e840a9d..e174d5b2 100644
--- a/mod/src/main/java/kr/syeyoung/dungeonsguide/mod/features/impl/dungeon/FeatureDungeonScore.java
+++ b/mod/src/main/java/kr/syeyoung/dungeonsguide/mod/features/impl/dungeon/FeatureDungeonScore.java
@@ -182,7 +182,6 @@ public class FeatureDungeonScore extends TextHUDFeature {
public int getTotalRooms() {
int compRooms = getCompleteRooms();
if (compRooms == 0) return 100;
- System.out.println(compRooms / (double) DungeonsGuide.getDungeonsGuide().getDungeonFacade().getContext().getPercentage());
return (int) Math.round(100 * (compRooms / (double) DungeonsGuide.getDungeonsGuide().getDungeonFacade().getContext().getPercentage()));
}
public int getUndiscoveredPuzzles() {
@@ -227,7 +226,6 @@ public class FeatureDungeonScore extends TextHUDFeature {
if (parser.getUndiscoveredRoom() != 0)
roomCnt = getTotalRooms();
skill = (int) Math.floor(80.0 * totalCompRooms / roomCnt)+20;
- System.out.println(skill + " / "+totalCompRooms + " / "+ roomCnt);
skill -= incompletePuzzles * 10;
deaths = FeatureRegistry.DUNGEON_DEATHS.getTotalDeaths();