fix: don't throw runtime exceptions when failing to retrieve pronouns

This commit is contained in:
Pyrrha 2022-06-18 13:31:11 +10:00
parent df5d5a8927
commit 7464fdb297
No known key found for this signature in database
GPG key ID: 81D743E41C1C23C1

View file

@ -122,7 +122,7 @@ public class PlayerPronouns implements ModInitializer {
setPronouns(handler.getPlayer(), new Pronouns(pronouns, PronounList.get().getCalculatedPronounStrings().get(pronouns)));
}).join();
} catch (URISyntaxException e) {
throw new RuntimeException(e);
e.printStackTrace();
}
}
});