screenshot plugin: reorder config
This commit is contained in:
@@ -74,6 +74,28 @@ public interface ScreenshotConfig extends Config
|
|||||||
return true;
|
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(
|
@ConfigItem(
|
||||||
keyName = "rewards",
|
keyName = "rewards",
|
||||||
name = "Screenshot Rewards",
|
name = "Screenshot Rewards",
|
||||||
@@ -122,17 +144,6 @@ public interface ScreenshotConfig extends Config
|
|||||||
return true;
|
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(
|
@ConfigItem(
|
||||||
keyName = "kills",
|
keyName = "kills",
|
||||||
name = "Screenshot PvP Kills",
|
name = "Screenshot PvP Kills",
|
||||||
@@ -276,15 +287,4 @@ public interface ScreenshotConfig extends Config
|
|||||||
{
|
{
|
||||||
return true;
|
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;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user