DaPigGuy / PiggyFactions

A modern open source factions plugin for PocketMine-MP
https://rtdx.aericio.net/en/latest/plugins/piggyfactions/
Apache License 2.0
52 stars 30 forks source link

Being able to put § in faction name #119

Closed logannn61 closed 1 year ago

logannn61 commented 2 years ago

people can put a § to change the colours and text of their faction name which causes a lot of problems such as people being able to put §k which makes the faction leader board unreadable for every faction below them.

Aericio commented 2 years ago

add {RESET} in the english.yml in the affected commands

https://github.com/DaPigGuy/PiggyFactions/blob/master/resources/languages/english.yml#L148-L154

- online: "{GOLD}#{RANK} {RELATIONCOLOR}{FACTION}{GOLD} -{YELLOW} {ONLINE}"
+ online: "{GOLD}#{RANK} {RELATIONCOLOR}{FACTION}{GOLD}{RESET} -{YELLOW} {ONLINE}"
Aericio commented 2 years ago

can make it so we strip all text formatting from faction name in code, but for now that is easiest solution.

logannn61 commented 2 years ago

okay thank you