Skip to content

Commit

Permalink
Fixed #10261
Browse files Browse the repository at this point in the history
  • Loading branch information
Anuken committed Oct 12, 2024
1 parent 0e83b60 commit 9f8f5a5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion core/src/mindustry/world/blocks/units/UnitFactory.java
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ public void updateTile(){
unit.command().commandPosition(commandPos);
}

unit.command().command(command == null && payload.unit.type.defaultCommand != null ? payload.unit.type.defaultCommand : command);
unit.command().command(command == null && unit.type.defaultCommand != null ? unit.type.defaultCommand : command);
}

payload = new UnitPayload(unit);
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ org.gradle.caching=true
org.gradle.internal.http.socketTimeout=100000
org.gradle.internal.http.connectionTimeout=100000
android.enableR8.fullMode=false
archash=a39155a23e
archash=dd60085a9d

0 comments on commit 9f8f5a5

Please sign in to comment.