aboutsummaryrefslogtreecommitdiff
path: root/src/main/Level.java
diff options
context:
space:
mode:
authorsowgro <tpoke.ferrari@gmail.com>2023-06-02 01:31:49 -0400
committersowgro <tpoke.ferrari@gmail.com>2023-06-02 01:31:49 -0400
commit0b7f45fcb05814870733613dcff233451948c967 (patch)
treea18044aa13d3374d39177332b57a822f32c60843 /src/main/Level.java
parent4e43d6f020d908ccd9b8a6b77803cac943da00ed (diff)
downloadNPEhero-0b7f45fcb05814870733613dcff233451948c967.tar.gz
NPEhero-0b7f45fcb05814870733613dcff233451948c967.tar.bz2
NPEhero-0b7f45fcb05814870733613dcff233451948c967.zip
start note editor, new test level
Diffstat (limited to 'src/main/Level.java')
-rw-r--r--src/main/Level.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/Level.java b/src/main/Level.java
index 591bd9a..cb16489 100644
--- a/src/main/Level.java
+++ b/src/main/Level.java
@@ -46,7 +46,7 @@ public class Level
{
if (cur.isDirectory()) //all subfolders within a level folder are difficulties
{
- Difficulty diff = new Difficulty(cur);
+ Difficulty diff = new Difficulty(cur,this);
diff.readData();
diffList.add(diff);
}
@@ -151,7 +151,7 @@ public class Level
} catch (IOException e) {
e.printStackTrace();
}
- Difficulty temp = new Difficulty(diffDir);
+ Difficulty temp = new Difficulty(diffDir,this);
temp.title = text;
temp.writeMetadata();
temp.writeLeaderboard();