mirror of
https://github.com/2006-Scape/2006Scape.git
synced 2026-07-02 16:49:03 +00:00
[GH-ISSUE #180] When wearing a black full helm (g) the hair of your player aren't removed so it looks wack. #7728
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @Gptaqbc on GitHub (Nov 12, 2019).
Original GitHub issue: https://github.com/2006-Scape/2006Scape/issues/180
Dont know if it's all full helm that does that. I know for sure that the black full helm (g) does it though.
@mrextremez commented on GitHub (Nov 13, 2019):
Look for item.java method fullmask I think if you add it there it might work
@Gptaqbc commented on GitHub (Nov 14, 2019):
To fix add "full helm (g)", "full helm (t)" to the following array:
/* Fullmask covers your entire head. */
private static String[] fullmask = { "full helm", "mask", "Verac's helm",
"Guthan's helm", "Karil's coif", "mask", "Torag's helm", "Void",
"sallet", "Facemask" };
Do the same for the items that aren't added to its corresponding array.
@Gptaqbc commented on GitHub (Nov 16, 2019):
Fixed gotta push