diff --git a/.github/ISSUE_TEMPLATE b/.github/ISSUE_TEMPLATE index 0f971d2d2..db31d023b 100644 --- a/.github/ISSUE_TEMPLATE +++ b/.github/ISSUE_TEMPLATE @@ -1,41 +1,13 @@ -Feel free to use the template below to report your issue, for suggestions you can use whatever works for you :) -Remember to use the Preview button to ensure the errors are displayed properly +Instructions for issue reporting: +- Write description of the issue +- Use `/plan m dump` & Copy the hastebin address here -If your issue is about a command timeout, please follow the instructions at the bottom of the issue template. +For suggestions use any format you want. :) ---- -**Plan Version:** -**Server Version:** -**Database Type:** - -**Issue Caused by:** - ----- - -**Description:** +**Description of the issue** -**Steps to Reproduce:** - -1. -2. - -**Proposed Solution:** - - ----- - -**Console/Errors.txt/DebugLog.txt contents:** -``` -Place any stack traces inside these symbols (```) -``` - ----- - -Instructions for reporting timeout issues: - -- Enable file debug mode by changing config setting "Debug" to "file" -- Reload the plugin -- Run the command that causes the timeout message to show -- Copy the contents of DebugLog.txt inside the code brackets above \ No newline at end of file +**Hastebin link** +Link: diff --git a/Plan/src/main/java/com/djrapitops/plan/database/databases/SQLDB.java b/Plan/src/main/java/com/djrapitops/plan/database/databases/SQLDB.java index 475333bba..d31dc677b 100644 --- a/Plan/src/main/java/com/djrapitops/plan/database/databases/SQLDB.java +++ b/Plan/src/main/java/com/djrapitops/plan/database/databases/SQLDB.java @@ -184,7 +184,7 @@ public abstract class SQLDB extends Database { Set uuids = usersTable.getSavedUUIDs(); uuids.removeAll(usersTable.getContainsBukkitData(uuids)); if (uuids.isEmpty()) { - Log.debug("No conversion necessary."); + Log.debug("Database", "No conversion necessary."); return; } setStatus("Bukkit Data Conversion"); diff --git a/Plan/src/main/java/com/djrapitops/plan/utilities/MiscUtils.java b/Plan/src/main/java/com/djrapitops/plan/utilities/MiscUtils.java index 9ba64238f..7313bd2ef 100644 --- a/Plan/src/main/java/com/djrapitops/plan/utilities/MiscUtils.java +++ b/Plan/src/main/java/com/djrapitops/plan/utilities/MiscUtils.java @@ -41,7 +41,7 @@ public class MiscUtils { } public static int getTimeZoneOffsetHours() { - return TimeZone.getDefault().getOffset(MiscUtils.getTime()) / (int) TimeAmount.HOUR.ms(); + return -TimeZone.getDefault().getOffset(MiscUtils.getTime()) / (int) TimeAmount.HOUR.ms(); } /**