Skip to content

Commit

Permalink
e
Browse files Browse the repository at this point in the history
  • Loading branch information
lever1209 committed Oct 28, 2022
1 parent 4b7c491 commit 7b74ee8
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ plugins {
id 'maven-publish'
}

sourceCompatibility = JavaVersion.VERSION_18
targetCompatibility = JavaVersion.VERSION_18
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17

archivesBaseName = project.archives_base_name
version = project.mod_version
Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.1-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
8 changes: 7 additions & 1 deletion src/main/java/pkg/deepCurse/pandora/core/PandoraConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,13 @@ public static void loadConfig() { // TODO test every cast
}

log.info("block level light settings: {}", BLOCK_LIGHT_LEVEL_FUNCTIONS);


for (LinkedHashMap<?, ?> i : (ArrayList<LinkedHashMap<?, ?>>) dimensionSettings) {



}

for (LinkedHashMap<?, ?> i : (ArrayList<LinkedHashMap<?, ?>>) grueWards) {

// String dep = (String) (i.get("depends") == null ? "minecraft" : i.get("depends")); // introduces questionable pairity for network sessions
Expand Down

0 comments on commit 7b74ee8

Please sign in to comment.