fix: Fixes setting body hue for resetstaffdress (#897)

This commit is contained in:
Kamron Batman 2021-12-27 01:45:13 -08:00 committed by GitHub
parent 48232829ad
commit a87aab19d0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -51,7 +51,7 @@ public static class StaffDress
if (pm.AccessLevel < AccessLevel.Administrator)
{
pm.Hue = Race.Human.ClipSkinHue(pm.Hue & 0x3FFF);
pm.Hue = Race.Human.ClipSkinHue((pm.Hue + 1) & 0x3FFF);
}
for (var i = pm.Items.Count - 1; i >= 0; i--)