mirror of
https://github.com/Anuken/Mindustry.git
synced 2025-02-19 03:03:59 +07:00
Add ModMeta#toString (#4292)
This commit is contained in:
parent
b762a5028b
commit
a0c7b33ff1
@ -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{
|
||||||
|
Loading…
Reference in New Issue
Block a user