-
Notifications
You must be signed in to change notification settings - Fork 31
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature - Disband Other Factions #1617
Conversation
French translations are required for the following: CommandFactionDisbandOthersNoPermission=You don't have permission to disband other factions. |
if (faction.members.size != 1) { | ||
sender.sendMessage("$RED${plugin.language["CommandFactionDisbandFactionMustBeEmpty"]}") | ||
return@Runnable | ||
else { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should be on the same line as the closing brace
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed!
return@Runnable | ||
} | ||
|
||
val nameOfFaction = args.joinToString(" "); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Needs update to onTabComplete to complete faction names
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added tab complete (used declare war tab complete).
@@ -1016,3 +1016,5 @@ FactionDisbandedZeroPowerNotificationBody=Your faction, {0}, was disbanded as it | |||
Teleporting=Teleporting in {0} seconds... | |||
TeleportationCancelled=Teleportation cancelled. | |||
PowerIncreased=You feel stronger. Your power has increased by {0}. | |||
CommandFactionDisbandOthersNoPermission=You don't have permission to disband other factions. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
CommandFactionDisbandOthersNoPermission=You don't have permission to disband other factions. | |
CommandFactionDisbandOthersNoPermission=You don''t have permission to disband other factions. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Changed!
@@ -1016,3 +1016,5 @@ FactionDisbandedZeroPowerNotificationBody=Your faction, {0}, was disbanded as it | |||
Teleporting=Teleporting in {0} seconds... | |||
TeleportationCancelled=Teleportation cancelled. | |||
PowerIncreased=You feel stronger. Your power has increased by {0}. | |||
CommandFactionDisbandOthersNoPermission=You don't have permission to disband other factions. | |||
CommandFactionDisbandSpecifiedFactionNotFound=The specified faction wasn't found. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
CommandFactionDisbandSpecifiedFactionNotFound=The specified faction wasn't found. | |
CommandFactionDisbandSpecifiedFactionNotFound=The specified faction wasn''t found. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Changed!
@@ -1016,3 +1016,5 @@ FactionDisbandedZeroPowerNotificationBody=Your faction, {0}, was disbanded as it | |||
Teleporting=Teleporting in {0} seconds... | |||
TeleportationCancelled=Teleportation cancelled. | |||
PowerIncreased=You feel stronger. Your power has increased by {0}. | |||
CommandFactionDisbandOthersNoPermission=You don't have permission to disband other factions. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
CommandFactionDisbandOthersNoPermission=You don't have permission to disband other factions. | |
CommandFactionDisbandOthersNoPermission=You don''t have permission to disband other factions. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Changed!
@@ -1016,3 +1016,5 @@ FactionDisbandedZeroPowerNotificationBody=Your faction, {0}, was disbanded as it | |||
Teleporting=Teleporting in {0} seconds... | |||
TeleportationCancelled=Teleportation cancelled. | |||
PowerIncreased=You feel stronger. Your power has increased by {0}. | |||
CommandFactionDisbandOthersNoPermission=You don't have permission to disband other factions. | |||
CommandFactionDisbandSpecifiedFactionNotFound=The specified faction wasn't found. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
CommandFactionDisbandSpecifiedFactionNotFound=The specified faction wasn't found. | |
CommandFactionDisbandSpecifiedFactionNotFound=The specified faction wasn''t found. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Changed!
This is ready for re-review @alyphen |
The changes in this PR allow players to disband other factions if they have permission.
closes #1613