oh no
This commit is contained in:
@@ -4701,6 +4701,7 @@ public class Blocks{
|
|||||||
limitRange();
|
limitRange();
|
||||||
}};
|
}};
|
||||||
|
|
||||||
|
if(false)
|
||||||
divine = new PowerTurret("divine"){{
|
divine = new PowerTurret("divine"){{
|
||||||
requirements(Category.turret, with(Items.beryllium, 150, Items.silicon, 150, Items.graphite, 250, Items.phaseFabric, 300));
|
requirements(Category.turret, with(Items.beryllium, 150, Items.silicon, 150, Items.graphite, 250, Items.phaseFabric, 300));
|
||||||
|
|
||||||
|
|||||||
@@ -237,7 +237,7 @@ public abstract class InputHandler implements InputProcessor, GestureListener{
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if(unitIds.length > 0 && player == Vars.player){
|
if(unitIds.length > 0 && player == Vars.player && !state.isPaused()){
|
||||||
if(teamTarget != null){
|
if(teamTarget != null){
|
||||||
Fx.attackCommand.at(teamTarget);
|
Fx.attackCommand.at(teamTarget);
|
||||||
}else{
|
}else{
|
||||||
@@ -257,7 +257,9 @@ public abstract class InputHandler implements InputProcessor, GestureListener{
|
|||||||
}
|
}
|
||||||
|
|
||||||
build.onCommand(target);
|
build.onCommand(target);
|
||||||
Fx.moveCommand.at(target);
|
if(!state.isPaused() && player == Vars.player){
|
||||||
|
Fx.moveCommand.at(target);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Remote(called = Loc.server, targets = Loc.both, forward = true)
|
@Remote(called = Loc.server, targets = Loc.both, forward = true)
|
||||||
|
|||||||
Reference in New Issue
Block a user