Skip to content

Commit

Permalink
Fix bugs preventing JAR file generation.
Browse files Browse the repository at this point in the history
  • Loading branch information
szelongq committed Sep 8, 2021
1 parent 2920388 commit 938b890
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
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-6.2-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-6.3-all.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
4 changes: 2 additions & 2 deletions src/main/java/duke/MainWindow.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ public class MainWindow extends AnchorPane {
private Duke duke;

// Image credits to Rhaennys from https://rhaennys.itch.io/pixel-art
private Image userImage = new Image(this.getClass().getResourceAsStream("/images/Cecilia.png"));
private Image dukeImage = new Image(this.getClass().getResourceAsStream("/images/ItemShopNPC.png"));
private Image userImage = new Image(this.getClass().getResourceAsStream("/Images/Cecilia.png"));
private Image dukeImage = new Image(this.getClass().getResourceAsStream("/Images/ItemShopNPC.png"));

@FXML
public void initialize() {
Expand Down

0 comments on commit 938b890

Please sign in to comment.