aboutsummaryrefslogtreecommitdiff
path: root/src/net/brysonsteck/Resurrection/player/PlayerData.java
diff options
context:
space:
mode:
authorBryson Steck <steck.bryson@gmail.com>2021-06-16 16:50:42 -0600
committerBryson Steck <steck.bryson@gmail.com>2021-06-16 16:50:42 -0600
commitc1aae0979096944fa86b41495f39a7085497bb7e (patch)
tree65a825f6746d01f0493883101929317a59cbb846 /src/net/brysonsteck/Resurrection/player/PlayerData.java
parentfb22ed40df5b1599aefce668e8ce6e1c43643544 (diff)
downloadresurrection-c1aae0979096944fa86b41495f39a7085497bb7e.tar
resurrection-c1aae0979096944fa86b41495f39a7085497bb7e.tar.gz
resurrection-c1aae0979096944fa86b41495f39a7085497bb7e.tar.bz2
implemented playerdata
Diffstat (limited to 'src/net/brysonsteck/Resurrection/player/PlayerData.java')
-rw-r--r--src/net/brysonsteck/Resurrection/player/PlayerData.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/brysonsteck/Resurrection/player/PlayerData.java b/src/net/brysonsteck/Resurrection/player/PlayerData.java
index cc82952..44dddb5 100644
--- a/src/net/brysonsteck/Resurrection/player/PlayerData.java
+++ b/src/net/brysonsteck/Resurrection/player/PlayerData.java
@@ -14,7 +14,7 @@ public class PlayerData {
public void saveData(String write) {
try {
FileWriter writer = new FileWriter("data/player.data");
- writer.write(rawData + ";" + write);
+ writer.write(write);
writer.close();
readData();
} catch (IOException e) {