fixed file extension for offline mode player data

added ".dat" file extension so this is able to find a players offline mode data if available
This commit is contained in:
CodeCrafter47 2014-05-10 22:47:41 +02:00 committed by md_5
parent 6d0b39bc76
commit 98272bf282

View File

@ -17,7 +17,7 @@ index 93ff8d3..cc4d487 100644
+ boolean usingWrongFile = false; + boolean usingWrongFile = false;
+ if ( !file1.exists() ) + if ( !file1.exists() )
+ { + {
+ file1 = new File( this.playerDir, UUID.nameUUIDFromBytes( ( "OfflinePlayer:" + entityhuman.getName() ).getBytes( "UTF-8" ) ).toString() ); + file1 = new File( this.playerDir, UUID.nameUUIDFromBytes( ( "OfflinePlayer:" + entityhuman.getName() ).getBytes( "UTF-8" ) ).toString() + ".dat");
+ if ( file1.exists() ) + if ( file1.exists() )
+ { + {
+ usingWrongFile = true; + usingWrongFile = true;