Merge remote-tracking branch 'origin/master'

This commit is contained in:
Bram 2024-07-08 16:35:05 +02:00
commit 396085f609
No known key found for this signature in database
GPG key ID: 13E608068F40E3CC
2 changed files with 2 additions and 2 deletions

View file

@ -17,7 +17,7 @@ public class BlockDisplayMeta extends AbstractDisplayMeta {
}
public void setBlockId(int blockId) {
super.metadata.setIndex(OFFSET, EntityDataTypes.INT, blockId);
super.metadata.setIndex(OFFSET, EntityDataTypes.BLOCK_STATE, blockId);
}
}

View file

@ -14,7 +14,7 @@ class TaskImpl implements Task {
final int id;
final Supplier<TaskSchedule> task;
final ExecutionType type;
final Scheduler owner;
final SchedulerImpl owner;
TaskImpl(int id, Supplier<TaskSchedule> task, ExecutionType type, SchedulerImpl owner) {
this.id = id;