Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions .idea/discord.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/encodings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,11 @@ public static boolean isProdEnv() {

public abstract Chat getChat();

//this gives out the Instance of this plugin
public static WolfyUtils getInstance() {
return getInstance();
}

public MapperUtil getJacksonMapperUtil() {
return mapperUtil;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public static String getBase64EncodedString(String str) {
@Deprecated
public static String getCode() {
var random = new Random();
var alphabet = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
var alphabet = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZÄÖÜß";
final int x = alphabet.length();
StringBuilder sB = new StringBuilder();
for (int i = 0; i < 16; i++) {
Expand Down