Removed Alpha Migration.

Fixed a crash when AE is rendering as a FMP Part.
Meteorite Loot is now less random.
Added support for CLApi ( might be neat as it develops )
This commit is contained in:
AlgorithmX2
2014-05-15 21:18:30 -05:00
parent 9ba1b133d7
commit 6f96ae6074
16 changed files with 75 additions and 1001 deletions
+8
View File
@@ -238,6 +238,14 @@ public class WorldSettings extends Configuration
return null;
}
public int getNextOrderedValue(String name)
{
Property p = this.get( "orderedValues", name, 0 );
int myValue = p.getInt();
p.set( myValue + 1 );
return myValue;
}
public int getPlayerID(String username)
{
ConfigCategory playerList = this.getCategory( "players" );