Installation
After installing the mod and starting the server once, a spaceaccents folder will be generated inside your config directory.
Adding new accents
Edit the accents.yml file to define your custom accents.
Each accent consists of a set of word, character, or regex replacements.
accents:
british: <-- Write the name of new accent here
display: "British" <-- Write displayed name in minecraft
replacements: <-- Add replacements
- type: char <-- choose a type (character, word, regex)
from: "s" <-- Which char, word or regex to replace
to: "sh" <-- Replaced word, char or regex
Enabling accents
After creating a new accent group, you must enable it in config.yml.
Only accents listed and set to true there will be available in-game via the /accent command.
accents:
british: true
test1: true <-- change the name to your new accent
test2: true <-- You can add even more!
test...

