1
Mods / Re: [0.96a] Captain's Log 0.2.0 - Note-taking and Reminders
« on: April 04, 2025, 10:13:25 AM »Doesn't work with 0.98a-RC5, but if you add `getName` to whatever extends `BaseIntelPlugin` then it works, tested with:Codepublic class CustomMessageIntel extends BaseIntel {
protected String getName() {
return title;
}Codepublic abstract class BaseIntel extends BaseIntelPlugin {
protected String getName() {
// Fallback to empty string to prevent game crashes.
return "";
}
Do you have Github release page for this to download from, or have you built it locally yourself? I'm a bit new to GHub Actions