Increased HackedNPC specs & reverted accidental change

This commit is contained in:
simon 2018-12-23 11:54:47 -05:00
parent 84ca3acb52
commit af4ddbdd89
2 changed files with 4 additions and 4 deletions

View File

@ -108,8 +108,8 @@ public class CubotLidar extends HardwareModule {
//Write map data to the location specified by register X //Write map data to the location specified by register X
int i = getCpu().getRegisterSet().getRegister("X").getValue(); int i = getCpu().getRegisterSet().getRegister("X").getValue();
for (int x = 0; x < unit.getWorld().getWorldSize(); x++) { for (int y = 0; y < unit.getWorld().getWorldSize(); y++) {
for (int y = 0; y < unit.getWorld().getWorldSize(); y++) { for (int x = 0; x < unit.getWorld().getWorldSize(); x++) {
getCpu().getMemory().set(i++, mapInfo[x][y]); getCpu().getMemory().set(i++, mapInfo[x][y]);
} }
} }

View File

@ -66,13 +66,13 @@ shield_energy_cost=50
npc_lifetime=1024 npc_lifetime=1024
npc_max_factory_distance=3 npc_max_factory_distance=3
factory_max_npc_count=16 factory_max_npc_count=16
factory_program_size=1024 factory_program_size=2048
settlement_spawn_rate=35 settlement_spawn_rate=35
harvester_hp_max=100 harvester_hp_max=100
harvester_regen=5 harvester_regen=5
harvester_biomass_drop_count=8 harvester_biomass_drop_count=8
radio_tower_range=3 radio_tower_range=3
hacked_npc_mem_size=5120 hacked_npc_mem_size=8192
npc_exec_time=5 npc_exec_time=5
hacked_npc_die_on_no_energy=1 hacked_npc_die_on_no_energy=1
#Vaults #Vaults