mirror of
https://github.com/Anuken/Mindustry.git
synced 2026-01-25 05:51:47 -08:00
Fixed #3320
This commit is contained in:
parent
89589c3258
commit
5eb4d25fe9
3 changed files with 4 additions and 4 deletions
|
|
@ -1305,8 +1305,8 @@ block.inverted-sorter.description = Similar to a standard sorter, but outputs se
|
|||
block.router.description = Distributes input items to 3 output directions equally.
|
||||
block.router.details = A necessary evil. Using next to production inputs is not advised, as they will get clogged by output.
|
||||
block.distributor.description = Distributes input items to 7 output directions equally.
|
||||
block.overflow-gate.description = Only outputs items to the left and right if the front path is blocked.
|
||||
block.underflow-gate.description = Opposite of an overflow gate. Outputs to the front if the left and right paths are blocked.
|
||||
block.overflow-gate.description = Only outputs items to the left and right if the front path is blocked. Cannot be used next to other gates.
|
||||
block.underflow-gate.description = Opposite of an overflow gate. Outputs to the front if the left and right paths are blocked. Cannot be used next to other gates.
|
||||
block.mass-driver.description = Long-range item transport structure. Collects batches of items and shoots them to other mass drivers.
|
||||
block.mechanical-pump.description = Pumps and outputs liquids. Does not require power.
|
||||
block.rotary-pump.description = Pumps and outputs liquids. Requires power.
|
||||
|
|
|
|||
|
|
@ -926,7 +926,7 @@ public class UnitTypes implements ContentList{
|
|||
smokeEffect = Fx.shootSmallSmoke;
|
||||
ammoMultiplier = 2;
|
||||
}};
|
||||
shootSound = Sounds.shoot;
|
||||
shootSound = Sounds.pew;
|
||||
}});
|
||||
}};
|
||||
|
||||
|
|
|
|||
|
|
@ -946,7 +946,7 @@ public class ServerControl implements ApplicationListener{
|
|||
}
|
||||
}
|
||||
|
||||
if(closest != null){
|
||||
if(closest != null && !closest.text.equals("yes")){
|
||||
err("Command not found. Did you mean \"" + closest.text + "\"?");
|
||||
suggested = line.replace(response.runCommand, closest.text);
|
||||
}else{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue