kangarko / Foundation

Foundation™ helps you create highly customized Minecraft plugins (based on Spigot/Paper API) that support multiple MC versions.
https://mineacademy.org
337 stars 62 forks source link

Update ChatUtil.java #223

Closed EmilJimenez21 closed 1 year ago

EmilJimenez21 commented 1 year ago

Fixed an issue where the provided final char space was not being included in the string builder in the center function.

Prior to fix: ` center("My Plugin", '=', 152);

" My Plugin " `

Post fix: ` center("My Plugin", '=', 152);

"=============== My Plugin ===============" `

kangarko commented 1 year ago

Thanks, good notice!