This commit is contained in:
mcrcortex
2025-10-29 01:01:06 +10:00
parent d909d82c33
commit a17711429c

View File

@@ -33,7 +33,7 @@ public class ModelBakerySubsystem {
public ModelBakerySubsystem(Mapper mapper) { public ModelBakerySubsystem(Mapper mapper) {
this.mapper = mapper; this.mapper = mapper;
this.factory = new ModelFactory(mapper, this.storage); this.factory = new ModelFactory(mapper, this.storage);
this.processingThread = new Thread(()->{ this.processingThread = new Thread(()->{//TODO replace this with something good/integrate it into the async processor so that we just have less threads overall
while (this.isRunning) { while (this.isRunning) {
this.factory.processAllThings(); this.factory.processAllThings();
try { try {