diff options
Diffstat (limited to 'src/util.ts')
-rw-r--r-- | src/util.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util.ts b/src/util.ts index 67cf4b5..45839cc 100644 --- a/src/util.ts +++ b/src/util.ts @@ -61,7 +61,7 @@ export const minecraftColorCodes: { [ key: string ]: string } = { * For example: blue -> 9 * @param colorName The name of the color (blue, red, aqua, etc) */ -export function colorCodeFromName(colorName: string): string { +export function colorCodeFromName(colorName: string): string | undefined { const hexColor = minecraftColorCodes[colorName.toLowerCase()] for (const key in minecraftColorCodes) { const value = minecraftColorCodes[key] |