InventoryConfig - invMove Config

This commit is contained in:
CaptainObvious0 2019-03-21 20:58:00 -05:00 committed by GitHub
parent 4c019062b6
commit 51b3762366
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -60,6 +60,8 @@ public class InventoryConfig extends ACheckConfig {
public final boolean openClose;
public final boolean openCancelOther;
public final ActionList invMoveActionList;
// Hot fixes.
public final boolean hotFixFallingBlockEndPortalActive;
@ -100,6 +102,8 @@ public class InventoryConfig extends ACheckConfig {
openClose = data.getBoolean(ConfPaths.INVENTORY_OPEN_CLOSE);
openCancelOther = data.getBoolean(ConfPaths.INVENTORY_OPEN_CANCELOTHER);
invMoveActionList = data.getOptimizedActionList(ConfPaths.INVENTORY_INVENTORYMOVE_ACTIONS, Permissions.INVENTORY_MOVE);
hotFixFallingBlockEndPortalActive = data.getBoolean(ConfPaths.INVENTORY_HOTFIX_DUPE_FALLINGBLOCKENDPORTAL);
}