Fixed the disguise thing again
This commit is contained in:
Daniel Waggner 2021-05-29 18:21:51 -07:00
parent 59e0d2f1a6
commit 63a7f17624
3 changed files with 8 additions and 1 deletions

View File

@ -150,6 +150,12 @@ public class PlayerDisguiseManager extends MiniPlugin implements IPacketHandler
PermissionGroup.MOD.setPermission(Perm.USE_DISGUISE, true, true);
PermissionGroup.MOD.setPermission(Perm.BLOCKED_DISGUISE, true, true);
PermissionGroup.MOD.setPermission(Perm.SHORT_DISGUISE, true, true);
PermissionGroup.QA.setPermission(Perm.USE_DISGUISE, false, true);
PermissionGroup.QA.setPermission(Perm.BLOCKED_DISGUISE, false, true);
PermissionGroup.QA.setPermission(Perm.SHORT_DISGUISE, false, true);
PermissionGroup.QAM.setPermission(Perm.USE_DISGUISE, false, true);
PermissionGroup.QAM.setPermission(Perm.BLOCKED_DISGUISE, false, true);
PermissionGroup.QAM.setPermission(Perm.SHORT_DISGUISE, false, true);
PermissionGroup.CONTENT.setPermission(Perm.USE_DISGUISE, true, true);
PermissionGroup.CONTENT.setPermission(Perm.BLOCKED_DISGUISE, true, true);
PermissionGroup.BUILDER.setPermission(Perm.BLOCKED_DISGUISE, true, true);

View File

@ -69,7 +69,8 @@ public class CastleSiegeNew extends TeamGame
"Castle Marksmen are important to defense because of their arrows.",
"Defenders respawn as wolves with no armor or weapons.",
"Wolves must wait 6 seconds in between respawns.",
"Coordination and teamwork are important to winning as Defenders."
"Coordination and teamwork are important to winning as Defenders.",
"In order to add this tip, I had to add the SUPER TEDIOUS... One line string... to the CastleSiegeNew.java file..."
};
private static final int START_TIME = 14000;
private static final int UNDEAD_BURN_TIME = 24000;