This commit is contained in:
ntr
2018-12-21 23:29:00 +11:00
parent dfe290a132
commit 62cfe4ee1c
4 changed files with 16 additions and 23 deletions
+2 -15
View File
@@ -10,7 +10,7 @@ strangle
## NOW
* pve granted stat reroll items
## SOON
* tutorial
@@ -31,11 +31,7 @@ strangle
* redis for game events
* chat
* notifications
* rejoin in progress games
* lock account to 1 open game at a time
* elo + leaderboards
* Items
@@ -53,11 +49,6 @@ strangle
teams
1v1 2v2 3v3
skill order defined by cryp/skill speed
counter -> dmg <-> heal
gem td style attr combinations
stoney + spikey = jagged
@@ -68,12 +59,8 @@ gem td style attr combinations
artificial
elementals
first strike
techno artists for the soundtrack
slimey
ghostly
+1 -4
View File
@@ -251,10 +251,7 @@ impl Rpc {
fn account_demo(_data: Vec<u8>, tx: &mut Transaction, _client: &mut WebSocket<TcpStream>) -> Result<RpcResponse, Error> {
let mut rng = thread_rng();
let acc_name: String = iter::repeat(())
.map(|()| rng.sample(Alphanumeric))
.take(8)
.collect();
let acc_name: String = iter::repeat(()).map(|()| rng.sample(Alphanumeric)).take(8).collect();
let account = account_create(AccountCreateParams { name: acc_name, password: "grepgrepgrep".to_string() }, tx)?;