Fix focus script to always include "fabric-client-gametest-api-v1" ()

* Fix focus script to always include "fabric-client-gametest-api-v1"

* Fix comment
This commit is contained in:
modmuss 2025-01-14 13:45:27 +00:00 committed by GitHub
parent 5f21acd061
commit 6aa3fa3b24
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -54,8 +54,9 @@ public class Focus {
readDependencies(arg, dependencies);
}
// All modules depend on fabric-gametest-api-v1 and fabric-registry-sync-v0
// All modules depend on the following modules:
readDependencies("fabric-gametest-api-v1", dependencies);
readDependencies("fabric-client-gametest-api-v1", dependencies);
readDependencies("fabric-registry-sync-v0", dependencies);
System.out.println("Focusing on:\n" + String.join("\n", dependencies));