screenshot plugin: reorder config

This commit is contained in:
Adam
2021-12-05 12:05:21 -05:00
parent 8944eb9be6
commit 60c8377b2e

View File

@@ -74,6 +74,28 @@ public interface ScreenshotConfig extends Config
return true;
}
@ConfigItem(
keyName = "uploadScreenshot",
name = "Upload",
description = "Configures whether or not screenshots are uploaded to Imgur, or placed on your clipboard",
position = 3
)
default ImageUploadStyle uploadScreenshot()
{
return ImageUploadStyle.NEITHER;
}
@ConfigItem(
keyName = "hotkey",
name = "Screenshot hotkey",
description = "When you press this key a screenshot will be taken",
position = 4
)
default Keybind hotkey()
{
return Keybind.NOT_SET;
}
@ConfigItem(
keyName = "rewards",
name = "Screenshot Rewards",
@@ -122,17 +144,6 @@ public interface ScreenshotConfig extends Config
return true;
}
@ConfigItem(
keyName = "uploadScreenshot",
name = "Upload",
description = "Configures whether or not screenshots are uploaded to Imgur, or placed on your clipboard",
position = 7
)
default ImageUploadStyle uploadScreenshot()
{
return ImageUploadStyle.NEITHER;
}
@ConfigItem(
keyName = "kills",
name = "Screenshot PvP Kills",
@@ -276,15 +287,4 @@ public interface ScreenshotConfig extends Config
{
return true;
}
@ConfigItem(
keyName = "hotkey",
name = "Screenshot hotkey",
description = "When you press this key a screenshot will be taken",
position = 20
)
default Keybind hotkey()
{
return Keybind.NOT_SET;
}
}