Cleanup
This commit is contained in:
parent
f9e55ff673
commit
14a49126f2
@ -15,7 +15,7 @@
|
||||
<link rel="icon" href="/live-atlas/favicons/favicon.svg">
|
||||
<link rel=”mask-icon” href="/live-atlas/favicons/mask.svg" color="#cccccc">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/live-atlas/favicons/apple-touch-icon.png">
|
||||
|
||||
|
||||
<meta name="keywords" content="minecraft, map, dynamic, liveatlas" />
|
||||
<meta name="description" content="Minecraft Dynamic Map" />
|
||||
|
||||
|
@ -690,13 +690,14 @@ export default {
|
||||
});
|
||||
|
||||
//Extra fake players for testing
|
||||
// for(let i = 0; i < 150; i++) {
|
||||
// for(let i = 0; i < 450; i++) {
|
||||
// players.add({
|
||||
// account: "VIDEO GAMES " + i,
|
||||
// health: Math.round(Math.random() * 10),
|
||||
// armor: Math.round(Math.random() * 10),
|
||||
// name: "VIDEO GAMES " + i,
|
||||
// sort: 0,
|
||||
// sort: Math.round(Math.random() * 10),
|
||||
// hidden: false,
|
||||
// location: {
|
||||
// x: Math.round(Math.random() * 1000) - 500,
|
||||
// y: 64,
|
||||
|
@ -264,4 +264,4 @@ export const actions: ActionTree<State, State> & Actions = {
|
||||
async [ActionTypes.SEND_CHAT_MESSAGE]({commit, state}, message: string): Promise<void> {
|
||||
await getAPI().sendChatMessage(message);
|
||||
},
|
||||
}
|
||||
}
|
||||
|
@ -222,7 +222,7 @@ export const state: State = {
|
||||
|
||||
ui: {
|
||||
smallScreen: false,
|
||||
visibleElements:new Set(),
|
||||
visibleElements: new Set(),
|
||||
previouslyVisibleElements: new Set(),
|
||||
|
||||
sidebar: {
|
||||
|
Loading…
Reference in New Issue
Block a user