Skip to content

Commit

Permalink
test your commits (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
mcagabe19 authored Nov 17, 2024
2 parents 852b11d + ac2cc41 commit 7464f09
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/tea/SScript.hx
Original file line number Diff line number Diff line change
Expand Up @@ -731,6 +731,7 @@ class SScript {
if (FileSystem.exists(scriptPath)) {
scriptFile = scriptPath;
script = File.getContent(scriptPath);
}
else #end if (Assets.exists(scriptPath))
{
scriptFile = scriptPath;
Expand Down Expand Up @@ -887,7 +888,7 @@ class SScript {
list.push(new SScript(path + i));
}
} else #end if (Assets.exists(path)) {
var files:Array<String> = Assets.list().filter(folder -> folder.contains(path)).map(folder -> folder.substr(folder.lastIndexOf("/") + 1);
var files:Array<String> = Assets.list().filter(folder -> folder.contains(path)).map(folder -> folder.substr(folder.lastIndexOf("/") + 1));
for (i in files)
{
var hasExtension:Bool = false;
Expand Down

0 comments on commit 7464f09

Please sign in to comment.