mirror of
https://github.com/Anuken/Mindustry.git
synced 2026-01-25 05:51:47 -08:00
Updated Arc
This commit is contained in:
parent
1d6f769e3d
commit
a5978b6163
2 changed files with 5 additions and 5 deletions
|
|
@ -43,9 +43,9 @@ public class StaticWall extends Rock{
|
|||
|
||||
boolean eq(int rx, int ry){
|
||||
return rx < world.width() - 1 && ry < world.height() - 1
|
||||
&& world.tile(rx + 1, ry).block() == this
|
||||
&& world.tile(rx, ry + 1).block() == this
|
||||
&& world.tile(rx, ry).block() == this
|
||||
&& world.tile(rx + 1, ry + 1).block() == this;
|
||||
&& world.tile(rx + 1, ry).block() == this
|
||||
&& world.tile(rx, ry + 1).block() == this
|
||||
&& world.tile(rx, ry).block() == this
|
||||
&& world.tile(rx + 1, ry + 1).block() == this;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
org.gradle.daemon=true
|
||||
org.gradle.jvmargs=-Xms256m -Xmx1024m
|
||||
archash=6e94de8eaa000725ad8f959009358cf010d6db01
|
||||
archash=6024918f94e31c8efbdfa1587177ccc225931b5b
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue