1
0
Fork 0

Renamed agents so that both versions can run at the same time

This commit is contained in:
Julien Dessaux 2023-10-26 19:08:06 +02:00
parent 6cf84fe67f
commit d8516c4ceb
Signed by: adyxax
GPG key ID: F92E51B86E07177E
2 changed files with 2 additions and 2 deletions

View file

@ -49,7 +49,7 @@ initST = do
registerST :: SpaceTradersT (T.Text) registerST :: SpaceTradersT (T.Text)
registerST = do registerST = do
r <- register "ADYXAX" "COSMIC" r <- register "ADYXAX-HS" "COSMIC"
case r of case r of
Right r' -> do Right r' -> do
addAgent $ agent r' addAgent $ agent r'

View file

@ -14,7 +14,7 @@ export async function init() {
'Content-Type': 'application/json', 'Content-Type': 'application/json',
}, },
body: JSON.stringify({ body: JSON.stringify({
symbol: "ADYXAX", symbol: "ADYXAX-JS",
faction: "COSMIC", faction: "COSMIC",
}), }),
}); });