> For the complete documentation index, see [llms.txt](https://pro-hytale-mods.gitbook.io/pro-hytale-mods-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://pro-hytale-mods.gitbook.io/pro-hytale-mods-docs/patch-notes/partypro-1.0.1-2-patch-notes.md).

# PartyPro 1.0.1/2 - Patch Notes

## PartyPro 1.0.1/2 — Patch Notes

Players can now select their preferred language directly in the PartyPro settings. The server default language remains configurable via `config.json`.

***

### Per-Player Language Selection

Each player can choose their own language in **Settings > LANGUAGE**. The selection is stored per UUID in `player_settings.json` and persists across sessions.

#### Available Languages

| Button      | Language                                     |
| ----------- | -------------------------------------------- |
| **DEFAULT** | Server default language (from `config.json`) |
| **EN**      | English                                      |
| **DE**      | Deutsch                                      |
| **ES**      | Español                                      |
| **FR**      | Français                                     |
| **BR**      | Português                                    |
| **HU**      | Magyar                                       |
| **RU**      | Русский                                      |

#### Server Default vs. Player Override

* **Server Default**: The `"language": "EN"` field in `config.json` determines the language for all players who have not made a personal selection.
* **Player Override**: Once a player selects a language, it is saved in their `HudSettings`. The **DEFAULT** button resets the selection back to the server default language.

#### Technical Details

* **`LanguageManager`**: All 7 language files are cached at startup. The new `forPlayer(UUID)` method returns a `PlayerLanguage` object that automatically uses the correct language file — player override if set, otherwise server default.
* **UI**: New settings section with 8 buttons (DEFAULT + 7 languages). The currently active button is highlighted in blue, all others are dimmed.
* **Entire new sidebar UI**: All \~210 `lang.get()` calls in `PartyBrowserNewGui` now use the player's language instead of the global server language.

#### New Language Keys (all 7 languages)

| Key                            | EN                                | DE                                |
| ------------------------------ | --------------------------------- | --------------------------------- |
| `gui.setting_language`         | LANGUAGE                          | SPRACHE                           |
| `gui.setting_language_desc`    | Select your preferred language... | Wähle deine bevorzugte Sprache... |
| `gui.setting_language_default` | DEFAULT                           | STANDARD                          |


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://pro-hytale-mods.gitbook.io/pro-hytale-mods-docs/patch-notes/partypro-1.0.1-2-patch-notes.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
