summaryrefslogtreecommitdiffstats
path: root/desktop/src/ch
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2016-02-16 16:28:54 +0100
committerJérémy Zurcher <jeremy@asynk.ch>2016-02-16 16:28:54 +0100
commit7cb950072c952bb45c2cc1f82c8a9719ac17afb2 (patch)
treebee7fa33ac17bbc00683f3922f8f303ce1ce3af9 /desktop/src/ch
parent93665392511e049fb7ebb2070d8ab4e68f89e049 (diff)
downloadRustAndDust-7cb950072c952bb45c2cc1f82c8a9719ac17afb2.zip
RustAndDust-7cb950072c952bb45c2cc1f82c8a9719ac17afb2.tar.gz
DB: replace firstname,lastname with name in playres table, fix player store/load
Diffstat (limited to 'desktop/src/ch')
-rw-r--r--desktop/src/ch/asynk/rustanddust/desktop/DesktopBackend.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/desktop/src/ch/asynk/rustanddust/desktop/DesktopBackend.java b/desktop/src/ch/asynk/rustanddust/desktop/DesktopBackend.java
index 48dd97b..22cca60 100644
--- a/desktop/src/ch/asynk/rustanddust/desktop/DesktopBackend.java
+++ b/desktop/src/ch/asynk/rustanddust/desktop/DesktopBackend.java
@@ -17,7 +17,7 @@ public class DesktopBackend implements Backend
public void init(RustAndDust game)
{
- me = game.db.storePlayerGetId("me", "myself", "I");
- opponent = game.db.storePlayerGetId("opponent", "other", "you");
+ me = game.db.storePlayerGetId("me", "myself");
+ opponent = game.db.storePlayerGetId("opponent", "other");
}
}