# Known issues

#### MySQL #1366 - Incorrect string value

This error happens when you try to insert characters that MySQL's current encoding doesn't support.

**Solution:** change MySQL's encoding to `utf8mb4`.\
1\. Open MySQL's `my.cnf`.\
2\. Add these configurations, save and restart MySQL:

```
[mysql]
default-character-set=utf8mb4
[mysqld]
character-set-server=utf8mb4
collation-server=utf8mb4_unicode_ci
```

#### KDR is not counted

Players report that their KDR is not changing.

**Solution:** deny the permission `simpleclans.other.kdr-exempt`. In some permission plugins, just add a `-` before the node. Others accept the `false` value.

#### Geyser | Error while opening GUI

Since SimpleClans is using player heads in its GUI, you may face with a [Geyser limitation](https://wiki.geysermc.org/geyser/current-limitations/).

After you try to open the menu (`/clan`), you may get the error in the console. \
In it you can find the mark of this error:

```
Caused by: java.lang.IllegalArgumentException: Name and ID cannot both be blank
```

**Solution**:\
Disable this option in your geyser configuration file.

```yaml
allow-custom-skulls: false
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://wiki.roinujnosde.me/simpleclans/other/known-issues.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
