mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
Added blast speed to config
max blocks in explosion algorithm now customizeable
This commit is contained in:
parent
898ca7fcad
commit
6424500d22
@ -366,6 +366,7 @@ public class MainRegistry
|
||||
public static int fatmanRadius = 35;
|
||||
public static int nukaRadius = 25;
|
||||
public static int aSchrabRadius = 20;
|
||||
public static int blastSpeed = 1024;
|
||||
public static int radioStructure = 500;
|
||||
public static int antennaStructure = 250;
|
||||
public static int atomStructure = 500;
|
||||
@ -1032,6 +1033,10 @@ public class MainRegistry
|
||||
Property propASchrab = config.get(Configuration.CATEGORY_GENERAL, "3.11_aSchrabRadius", 20);
|
||||
propASchrab.comment = "Radius of dropped anti schrabidium";
|
||||
aSchrabRadius = propASchrab.getInt();
|
||||
//add blast speed as config
|
||||
Property propBlastSpeed = config.get(Configuration.CATEGORY_GENERAL, "Blast Speed", 1024);
|
||||
propBlastSpeed.comment = "Base speed of all detonations (Blocks / tick)";
|
||||
blastSpeed = propBlastSpeed.getInt();
|
||||
|
||||
Property propRadio = config.get(Configuration.CATEGORY_GENERAL, "4.00_radioSpawn", 500);
|
||||
propRadio.comment = "Spawn radio station on every nTH chunk";
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user