Skip to content
Snippets Groups Projects
Commit fd6d6100 authored by mcmlxxix's avatar mcmlxxix
Browse files

use word wrapping in game activity window, store turn and last_turn data...

use word wrapping in game activity window, store turn and last_turn data individually, update player list after each attack
parent 80163a9d
No related branches found
No related tags found
No related merge requests found
......@@ -114,10 +114,8 @@ function Data()
}
this.saveTurn=function(game) {
var location="games." + game.gameNumber;
client.lock(game_id,location,2);
client.write(game_id,location + ".turn",game.turn);
client.write(game_id,location + ".last_turn",Date.now());
client.unlock(game_id,location);
client.write(game_id,location + ".last_turn",Date.now(),2);
client.write(game_id,location + ".turn",game.turn,2);
}
this.saveRound=function(game) {
var location="games." + game.gameNumber;
......@@ -216,7 +214,6 @@ function Player(name,sys_name,vote)
this.vote=vote;
this.reserve=0;
this.active=true;
this.lastTurn=0;
this.AI=false;
}
function AI(sort,check,qty)
......
......@@ -613,6 +613,7 @@ function playGame(gameNumber) {
setMenuCommands();
chat.join(channel);
activityFrame.lf_strict=false;
activityFrame.word_wrap=true;
gameFrame.transparent = true;
gameBackground.open();
activityFrame.open();
......@@ -677,7 +678,6 @@ function playGame(gameNumber) {
break;
case "A":
doAttacks();
listPlayers();
break;
case "E":
endTurn();
......@@ -819,6 +819,7 @@ function playGame(gameNumber) {
var coords;
do {
coords=attack(coords);
listPlayers();
}
while(coords !== false);
cursor.close();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment