Removed debug code from player data saving

This commit is contained in:
Shoghi Cervantes 2014-05-29 18:47:22 +02:00
parent 96445c4613
commit c6632da159

View File

@ -674,7 +674,6 @@ class Server{
$nbt = new NBT(NBT::BIG_ENDIAN); $nbt = new NBT(NBT::BIG_ENDIAN);
$nbt->setData($nbtTag); $nbt->setData($nbtTag);
file_put_contents($this->getDataPath() . "players/" . strtolower($name) . ".dat", $nbt->writeCompressed()); file_put_contents($this->getDataPath() . "players/" . strtolower($name) . ".dat", $nbt->writeCompressed());
file_put_contents($this->getDataPath() . "players/" . strtolower($name) . ".raw.dat", $nbt->write());
} }
/** /**