some indent and a version bump

This commit is contained in:
Olof Larsson 2012-12-20 13:05:48 +01:00
parent 01fd133352
commit 0a15dae2a4
2 changed files with 9 additions and 9 deletions

View File

@ -1,5 +1,5 @@
name: mcore5
version: 1.1.1
version: 1.1.2
main: com.massivecraft.mcore5.MCore
load: startup
permissions:

View File

@ -2,14 +2,14 @@ package com.massivecraft.mcore5.store;
public enum ModificationState
{
LOCAL_ALTER (true, true),
LOCAL_ATTACH (true, true),
LOCAL_DETACH (true, true),
REMOTE_ALTER (true, false),
REMOTE_ATTACH (true, false),
REMOTE_DETACH (true, false),
NONE (false, false),
UNKNOWN (false, false),
LOCAL_ALTER (true, true),
LOCAL_ATTACH (true, true),
LOCAL_DETACH (true, true),
REMOTE_ALTER (true, false),
REMOTE_ATTACH (true, false),
REMOTE_DETACH (true, false),
NONE (false, false),
UNKNOWN (false, false),
;
private final boolean modified;