mirror of
https://github.com/Anuken/Mindustry.git
synced 2026-01-25 14:01:03 -08:00
Increased surge smelter item capacity
This commit is contained in:
parent
b5abc23c9d
commit
849943a0de
2 changed files with 2 additions and 1 deletions
|
|
@ -103,7 +103,7 @@ public class LogicAI extends AIController{
|
|||
//look where moving if there's nothing to aim at
|
||||
if(!shoot){
|
||||
unit.lookAt(unit.prefRotation());
|
||||
}else if(unit.hasWeapons()){ //if there is, look at the object
|
||||
}else if(unit.hasWeapons() && unit.mounts.length > 0){ //if there is, look at the object
|
||||
unit.lookAt(unit.mounts[0].aimX, unit.mounts[0].aimY);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -614,6 +614,7 @@ public class Blocks implements ContentList{
|
|||
craftTime = 75f;
|
||||
size = 3;
|
||||
hasPower = true;
|
||||
itemCapacity = 20;
|
||||
|
||||
consumes.power(4f);
|
||||
consumes.items(with(Items.copper, 3, Items.lead, 4, Items.titanium, 2, Items.silicon, 3));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue