Skip to content

Commit

Permalink
wait
Browse files Browse the repository at this point in the history
  • Loading branch information
charlesisfeline committed Nov 15, 2023
1 parent e6a40f8 commit fe05821
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 19 deletions.
18 changes: 0 additions & 18 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,24 +4,6 @@ Engine originally used on [Mind Games Mod](https://gamebanana.com/mods/301107),
## Installation:
You must have [Haxe](https://haxe.org/download/), installed in order to move on to these next steps

`function getLoadText():Array<Array<String>>
{
#if MODS_ALLOWED
var firstArray:Array<String> = Mods.mergeAllTextsNamed('data/introText.txt', Paths.getSharedPath());
#else
var fullText:String = Assets.getText(Paths.txt('introText'));
var firstArray:Array<String> = fullText.split('\n');
#end
var swagGoodArray:Array<Array<String>> = [];

for (i in firstArray)
{
swagGoodArray.push(i.split('--'));
}

return swagGoodArray;
}`

------------------

Go into your `setup` folder located in the root directory of the source code, and execute the respective script for your operating system
Expand Down
2 changes: 1 addition & 1 deletion source/backend/Paths.hx
Original file line number Diff line number Diff line change
Expand Up @@ -444,7 +444,7 @@ class Paths

#if MODS_ALLOWED
inline static public function mods(key:String = '') {
return correctPath(key);
return key;
}

inline static public function modsFont(key:String) {
Expand Down

0 comments on commit fe05821

Please sign in to comment.