mirror of
https://github.com/Anuken/Mindustry.git
synced 2025-07-09 15:27:45 +07:00
Merge remote-tracking branch 'origin/master'
This commit is contained in:
@ -853,6 +853,18 @@ public class Mods implements Loadable{
|
|||||||
if(author != null) author = Strings.stripColors(author);
|
if(author != null) author = Strings.stripColors(author);
|
||||||
if(description != null) description = Strings.stripColors(description);
|
if(description != null) description = Strings.stripColors(description);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return "ModMeta{" +
|
||||||
|
"name='" + name + '\'' +
|
||||||
|
", author='" + author + '\'' +
|
||||||
|
", version='" + version + '\'' +
|
||||||
|
", main='" + main + '\'' +
|
||||||
|
", minGameVersion='" + minGameVersion + '\'' +
|
||||||
|
", hidden=" + hidden +
|
||||||
|
'}';
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public enum ModState{
|
public enum ModState{
|
||||||
|
Reference in New Issue
Block a user