Updated wiki links

This commit is contained in:
Anuken 2020-11-28 23:59:56 -05:00
parent 3d6fd8a351
commit 23fc86fac1
4 changed files with 6 additions and 18 deletions

View File

@ -56,7 +56,7 @@ public class Vars implements Loadable{
/** URL for sending crash reports to */
public static final String crashReportURL = "http://192.99.169.18/report";
/** URL the links to the wiki's modding guide.*/
public static final String modGuideURL = "https://mindustrygame.github.io/wiki/modding/";
public static final String modGuideURL = "https://mindustrygame.github.io/wiki/modding/1-modding/";
/** URL to the JSON file containing all the global, public servers. Not queried in BE. */
public static final String serverJsonURL = "https://raw.githubusercontent.com/Anuken/Mindustry/master/servers.json";
/** URL to the JSON file containing all the BE servers. Only queried in BE. */

View File

@ -309,6 +309,10 @@ public class ContentParser{
}
if(value.has("controller")){
unit.defaultController = make(resolve(value.getString("controller"), "mindustry.ai.type"));
}
//read extra default waves
if(value.has("waves")){
JsonValue waves = value.remove("waves");

View File

@ -4,7 +4,7 @@ import arc.graphics.g2d.*;
import arc.math.*;
import mindustry.world.*;
/**A type of floor that is overlaid on top of over floors.*/
/**A type of floor that is overlaid on top of other floors.*/
public class OverlayFloor extends Floor{
public OverlayFloor(String name){

View File

@ -1,16 +0,0 @@
package mindustry.world.blocks.units;
import mindustry.gen.*;
import mindustry.world.*;
public class ControlCenter extends Block{
public ControlCenter(String name){
super(name);
update = true;
}
public class ControlCenterBuild extends Building{
}
}