Some typos

This commit is contained in:
Skat
2020-11-26 02:04:08 +03:00
parent a0f1f52a8b
commit 488147759a
4 changed files with 6 additions and 6 deletions

View File

@@ -677,7 +677,7 @@ public class Mods implements Loadable{
public Seq<String> missingDependencies = new Seq<>();
/** Script files to run. */
public Seq<Fi> scripts = new Seq<>();
/** Content with intialization code. */
/** Content with initialization code. */
public ObjectSet<Content> erroredContent = new ObjectSet<>();
/** Current state of this mod. */
public ModState state = ModState.enabled;
@@ -708,7 +708,7 @@ public class Mods implements Loadable{
return !erroredContent.isEmpty();
}
/** @return whether this mod is supported by the game verison */
/** @return whether this mod is supported by the game version */
public boolean isSupported(){
if(isOutdated()) return false;