Merge pull request #1402 from runelite-extended/infernopatch

Inferno: fix plugin start-up error.
This commit is contained in:
Tyler Bochard
2019-08-19 21:01:17 -04:00
committed by GitHub

View File

@@ -1,8 +1,19 @@
package net.runelite.client.plugins.inferno;
enum InfernoPrayerOverlayMode
import lombok.RequiredArgsConstructor;
@RequiredArgsConstructor
public enum InfernoPrayerOverlayMode
{
PRAYER_TAB,
BOTTOM_RIGHT,
BOTH
PRAYER_TAB("Prayer Tab"),
BOTTOM_RIGHT("Bottom Right"),
BOTH("Both");
private final String name;
@Override
public String toString()
{
return name;
}
}