Removed dev mode by default.

This commit is contained in:
CodeForFame 2012-03-15 21:54:16 -05:00
parent 829c308e8f
commit 3c2ee5eeb0
1 changed files with 5 additions and 21 deletions

View File

@ -176,13 +176,9 @@ public class SerializedStorageMedium implements StorageMedium {
@Override
public int getGroupID(long user) {
////////////////////////////////////
////////// For Alpha Only //////////
////////////////////////////////////
return 11;
////////////////////////////////////
//////// End For Alpha Only ////////
////////////////////////////////////
return 1;
}
private long ownerId = 0;
@ -239,25 +235,13 @@ public class SerializedStorageMedium implements StorageMedium {
stats[3] = 10;
save.setCurStats(stats);
////////////////////////////////////
////////// For Alpha Only //////////
////////////////////////////////////
save.setOwner((int) ownerId, 11, 0L);
////////////////////////////////////
//////// End For Alpha Only ////////
////////////////////////////////////
save.setOwner((int) ownerId, 1, 0L);
return save;
}
////////////////////////////////////
////////// For Alpha Only //////////
////////////////////////////////////
ps.setOwner((int) ownerId, 11, 0L);
////////////////////////////////////
//////// End For Alpha Only ////////
////////////////////////////////////
return ps;
}