From 5951f6b55f20981f411a06d98fb686acc4da394e Mon Sep 17 00:00:00 2001 From: sowgro Date: Thu, 8 Jun 2023 02:50:36 -0400 Subject: move resources out of src so they can be read from a jar --- src/main/Level.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main/Level.java') diff --git a/src/main/Level.java b/src/main/Level.java index 79f70e1..313b1fa 100644 --- a/src/main/Level.java +++ b/src/main/Level.java @@ -80,7 +80,7 @@ public class Level diffList = FXCollections.observableArrayList(); validDiffList = FXCollections.observableArrayList(); - for(File cur: thisDir.listFiles()) //iterates through all files/folders in src/assets/levels/LEVEL + for(File cur: thisDir.listFiles()) //iterates through all files/folders in /levels/LEVEL { if (cur.isDirectory()) //all subfolders within a level folder are difficulties { -- cgit v1.2.3