SkinImage: 128x64 is not a valid classic skin size

MC itself doesn't accept classic skins of this size.
This commit is contained in:
Dylan K. Taylor 2020-06-17 20:31:28 +01:00
parent 11a3f9f1b9
commit f970be0e4d

View File

@ -52,8 +52,6 @@ class SkinImage{
return new self(32, 64, $data);
case 64 * 64 * 4:
return new self(64, 64, $data);
case 128 * 64 * 4:
return new self(64, 128, $data);
case 128 * 128 * 4:
return new self(128, 128, $data);
}