...
This commit is contained in:
File diff suppressed because it is too large
Load Diff
Binary file not shown.
|
Before Width: | Height: | Size: 736 KiB After Width: | Height: | Size: 742 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 128 KiB After Width: | Height: | Size: 129 KiB |
@@ -3,5 +3,6 @@ package mindustry.entities;
|
|||||||
/** A higher ordinal means a higher priority. Higher priority blocks will always get targeted over those of lower priority, regardless of distance. */
|
/** A higher ordinal means a higher priority. Higher priority blocks will always get targeted over those of lower priority, regardless of distance. */
|
||||||
public enum TargetPriority{
|
public enum TargetPriority{
|
||||||
base,
|
base,
|
||||||
turret
|
turret,
|
||||||
|
core
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -29,6 +29,7 @@ public class CoreBlock extends StorageBlock{
|
|||||||
solid = true;
|
solid = true;
|
||||||
update = true;
|
update = true;
|
||||||
hasItems = true;
|
hasItems = true;
|
||||||
|
priority = TargetPriority.core;
|
||||||
flags = EnumSet.of(BlockFlag.core, BlockFlag.producer, BlockFlag.unitModifier);
|
flags = EnumSet.of(BlockFlag.core, BlockFlag.producer, BlockFlag.unitModifier);
|
||||||
unitCapModifier = 10;
|
unitCapModifier = 10;
|
||||||
activeSound = Sounds.respawning;
|
activeSound = Sounds.respawning;
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
org.gradle.daemon=true
|
org.gradle.daemon=true
|
||||||
org.gradle.jvmargs=-Xms256m -Xmx1024m
|
org.gradle.jvmargs=-Xms256m -Xmx1024m
|
||||||
archash=81c1af45d826a9a9553457b5c844b8b7d4faea7c
|
archash=84c3889593afe0fc98a5f9f9efde501899338d76
|
||||||
|
|||||||
Reference in New Issue
Block a user