How to delete categories?
Solved
General
-
how do i delete categories from liquid bounce ?
-
@plumer-man
With Core you can simply do
_categories.remove("name");
It is using Core's editable enum util. To edit other enums you can do
editable = new EditableEnum(target); editable.add("name"); editable.remove("name"); editable.get() editable.values()
-
@plumer-man Why would you want to delete a category? If you simply want to hide it from the clickgui, you can open
clickgui.json
(inside the LiquidBounce directory) in a text editor and setvisible
tofalse
for any category you want to hide.