From 356ed5f1de75aef004876edd96683ac2417dc5be Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Sat, 1 Feb 2020 20:50:16 +0000 Subject: [PATCH] DyeColor: fix PHP 7.2 compatibility --- src/block/utils/DyeColor.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/block/utils/DyeColor.php b/src/block/utils/DyeColor.php index 80cb087670..d6f98b974c 100644 --- a/src/block/utils/DyeColor.php +++ b/src/block/utils/DyeColor.php @@ -74,7 +74,7 @@ final class DyeColor{ new DyeColor("brown", "Brown", 12, new Color(0x83, 0x54, 0x32)), new DyeColor("green", "Green", 13, new Color(0x5e, 0x7c, 0x16)), new DyeColor("red", "Red", 14, new Color(0xb0, 0x2e, 0x26)), - new DyeColor("black", "Black", 15, new Color(0x1d, 0x1d, 0x21)), + new DyeColor("black", "Black", 15, new Color(0x1d, 0x1d, 0x21)) ); }