This commit is contained in:
Flanks255 2024-10-23 17:22:22 -05:00
parent 606177d002
commit d9b0a714d1
2 changed files with 1 additions and 1 deletions

View file

@ -28,7 +28,7 @@ public class ThreadSpecialFetcher extends Thread {
public void run() { public void run() {
ActuallyAdditions.LOGGER.info("Fetching Special People Stuff..."); ActuallyAdditions.LOGGER.info("Fetching Special People Stuff...");
try { try {
URL url = new URL("https://raw.githubusercontent.com/Ellpeck/ActuallyAdditions/main/specialPeopleThings.properties"); URL url = new URL("https://raw.githubusercontent.com/Ellpeck/ActuallyAdditions/main/specialPeopleStuffNew.properties");
Properties specialProperties = new Properties(); Properties specialProperties = new Properties();
specialProperties.load(new InputStreamReader(url.openStream())); specialProperties.load(new InputStreamReader(url.openStream()));
SpecialRenderInit.parse(specialProperties); SpecialRenderInit.parse(specialProperties);