From 4de42e36fd53a577e9404916de4563e06e34ee5b Mon Sep 17 00:00:00 2001 From: jiminycrick Date: Wed, 14 Oct 2020 17:10:27 -0700 Subject: [PATCH] Consolidated recover code in repeater_ranged --- CHANGELOG.md | 4 + common/src/states/repeater_ranged.rs | 20 +- .../singleplayer/server_config/admins.ron | 1 - .../singleplayer/server_config/banlist.ron | 1 - .../server_config/description.ron | 1 - .../singleplayer/server_config/whitelist.ron | 1 - userdata/voxygen/logs/voxygen.log.2020-10-12 | 885 ------------------ userdata/voxygen/profile.ron | 18 - 8 files changed, 6 insertions(+), 925 deletions(-) delete mode 100644 userdata/singleplayer/server_config/admins.ron delete mode 100644 userdata/singleplayer/server_config/banlist.ron delete mode 100644 userdata/singleplayer/server_config/description.ron delete mode 100644 userdata/singleplayer/server_config/whitelist.ron delete mode 100644 userdata/voxygen/logs/voxygen.log.2020-10-12 delete mode 100644 userdata/voxygen/profile.ron diff --git a/CHANGELOG.md b/CHANGELOG.md index 4db936c888..bdf975a3f1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,6 +21,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Theropod body - Several new animals - Item quality indicators +- Added a jump/burst attack for the bow to the skillbar +- Gave the axe a third attack +- A new secondary charged melee attack for the hammer ### Changed @@ -46,6 +49,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Reworked healing sceptre - Split out the sections of the server settings that can be edited and saved by the server. - Revamped structure of where settings, logs, and game saves are stored so that almost everything is in one place. +- Moved hammer leap attack to skillbar ### Removed diff --git a/common/src/states/repeater_ranged.rs b/common/src/states/repeater_ranged.rs index 3dabb4fedb..c2c4e5d81b 100644 --- a/common/src/states/repeater_ranged.rs +++ b/common/src/states/repeater_ranged.rs @@ -177,27 +177,11 @@ impl CharacterBehavior for Data { } }, StageSection::Recover => { - if self.static_data.leap == None { - if !data.physics.on_ground || self.timer < self.static_data.recover_duration { - // Lands or recovers from attack in air - update.character = CharacterState::RepeaterRanged(Data { - static_data: self.static_data.clone(), - timer: self - .timer - .checked_add(Duration::from_secs_f32(data.dt.0)) - .unwrap_or_default(), - stage_section: self.stage_section, - reps_remaining: self.reps_remaining, - }); - } else { - // Done - update.character = CharacterState::Wielding; - } - } else if data.physics.on_ground { + if self.static_data.leap.is_some() && data.physics.on_ground { // Done update.character = CharacterState::Wielding; } else if self.timer < self.static_data.recover_duration { - // Recovers from attack + // Recover from attack update.character = CharacterState::RepeaterRanged(Data { static_data: self.static_data.clone(), timer: self diff --git a/userdata/singleplayer/server_config/admins.ron b/userdata/singleplayer/server_config/admins.ron deleted file mode 100644 index 0637a088a0..0000000000 --- a/userdata/singleplayer/server_config/admins.ron +++ /dev/null @@ -1 +0,0 @@ -[] \ No newline at end of file diff --git a/userdata/singleplayer/server_config/banlist.ron b/userdata/singleplayer/server_config/banlist.ron deleted file mode 100644 index 9e26dfeeb6..0000000000 --- a/userdata/singleplayer/server_config/banlist.ron +++ /dev/null @@ -1 +0,0 @@ -{} \ No newline at end of file diff --git a/userdata/singleplayer/server_config/description.ron b/userdata/singleplayer/server_config/description.ron deleted file mode 100644 index 47474ec828..0000000000 --- a/userdata/singleplayer/server_config/description.ron +++ /dev/null @@ -1 +0,0 @@ -"This is the best Veloren server" \ No newline at end of file diff --git a/userdata/singleplayer/server_config/whitelist.ron b/userdata/singleplayer/server_config/whitelist.ron deleted file mode 100644 index 0637a088a0..0000000000 --- a/userdata/singleplayer/server_config/whitelist.ron +++ /dev/null @@ -1 +0,0 @@ -[] \ No newline at end of file diff --git a/userdata/voxygen/logs/voxygen.log.2020-10-12 b/userdata/voxygen/logs/voxygen.log.2020-10-12 deleted file mode 100644 index d953b35df0..0000000000 --- a/userdata/voxygen/logs/voxygen.log.2020-10-12 +++ /dev/null @@ -1,885 +0,0 @@ -Oct 11 18:00:01.436  INFO veloren_voxygen::logging: Setup terminal and file logging. logdir="/home/james/Documents/Projects/rust/veloren/userdata/voxygen/logs" -Oct 11 18:00:01.996  INFO veloren_common::assets: Assets found path=/home/james/Documents/Projects/rust/veloren/assets -Oct 11 18:00:02.329  INFO winit::platform_impl::platform::x11::window: Guessed window scale factor: 1 -Oct 11 18:00:02.427  INFO veloren_voxygen::window: selected graphics device vendor="NVIDIA Corporation" renderer="GeForce 940MX/PCIe/SSE2" opengl_version=3.3.0, NVIDIA 450.66 glsl_version=3.30, NVIDIA via Cg compiler -Oct 11 18:00:02.968 ERROR veloren_voxygen: VOXYGEN HAS PANICKED - -A critical error has occurred and Voxygen has been forced to terminate in an unusual manner. Details about the error can be found below. - -> What should I do? - -We need your help to fix this! You can help by contacting us and reporting this problem. To do this, open an issue on the Veloren issue tracker: - -https://www.gitlab.com/veloren/veloren/issues/new - -If you're on the Veloren community Discord server, we'd be grateful if you could also post a message in the #support channel. - -> What should I include? - -The error information below will be useful in finding and fixing the problem. Please include as much information about your setup and the events that led up to the panic as possible. - -Voxygen has logged information about the problem (including this message) to the file /home/james/Documents/Projects/rust/veloren/userdata/voxygen/logs/voxygen-.log. Please include the contents of this file in your bug report. - -> Error information - -The information below is intended for developers and testers. - -Panic Payload: "Failed to create window!: RenderError(PipelineError(Program(Pixel(CompilationFailed(\"0(815) : error C1020: invalid operands to \\\"/\\\"\\n\")))))" -PanicInfo: panicked at 'Failed to create window!: RenderError(PipelineError(Program(Pixel(CompilationFailed("0(815) : error C1020: invalid operands to \"/\"\n")))))', voxygen/src/main.rs:175:55 -Game version: 702f7e51 [2020-10-12] - -Backtrace: - 0: veloren_voxygen::main::{{closure}} - 1: std::panicking::rust_panic_with_hook - at /rustc/8e21bd0633b8d970646ee6eb706c9e8acfad19af/library/std/src/panicking.rs:573 - 2: std::panicking::begin_panic_handler::{{closure}} - at /rustc/8e21bd0633b8d970646ee6eb706c9e8acfad19af/library/std/src/panicking.rs:476 - 3: std::sys_common::backtrace::__rust_end_short_backtrace - at /rustc/8e21bd0633b8d970646ee6eb706c9e8acfad19af/library/std/src/sys_common/backtrace.rs:153 - 4: rust_begin_unwind - at /rustc/8e21bd0633b8d970646ee6eb706c9e8acfad19af/library/std/src/panicking.rs:475 - 5: core::panicking::panic_fmt - at /rustc/8e21bd0633b8d970646ee6eb706c9e8acfad19af/library/core/src/panicking.rs:85 - 6: core::option::expect_none_failed - at /rustc/8e21bd0633b8d970646ee6eb706c9e8acfad19af/library/core/src/option.rs:1274 - 7: veloren_voxygen::main - 8: std::sys_common::backtrace::__rust_begin_short_backtrace - 9: std::rt::lang_start::{{closure}} - -Oct 11 18:04:17.781  INFO veloren_voxygen::logging: Setup terminal and file logging. logdir="/home/james/Documents/Projects/rust/veloren/userdata/voxygen/logs" -Oct 11 18:04:17.977  INFO veloren_common::assets: Assets found path=/home/james/Documents/Projects/rust/veloren/assets -Oct 11 18:04:18.008  INFO winit::platform_impl::platform::x11::window: Guessed window scale factor: 1 -Oct 11 18:04:18.130  INFO veloren_voxygen::window: selected graphics device vendor="NVIDIA Corporation" renderer="GeForce 940MX/PCIe/SSE2" opengl_version=3.3.0, NVIDIA 450.66 glsl_version=3.30, NVIDIA via Cg compiler -Oct 11 18:04:18.313 ERROR veloren_voxygen: VOXYGEN HAS PANICKED - -A critical error has occurred and Voxygen has been forced to terminate in an unusual manner. Details about the error can be found below. - -> What should I do? - -We need your help to fix this! You can help by contacting us and reporting this problem. To do this, open an issue on the Veloren issue tracker: - -https://www.gitlab.com/veloren/veloren/issues/new - -If you're on the Veloren community Discord server, we'd be grateful if you could also post a message in the #support channel. - -> What should I include? - -The error information below will be useful in finding and fixing the problem. Please include as much information about your setup and the events that led up to the panic as possible. - -Voxygen has logged information about the problem (including this message) to the file /home/james/Documents/Projects/rust/veloren/userdata/voxygen/logs/voxygen-.log. Please include the contents of this file in your bug report. - -> Error information - -The information below is intended for developers and testers. - -Panic Payload: "Failed to create window!: RenderError(PipelineError(Program(Pixel(CompilationFailed(\"0(776) : error C0000: syntax error, unexpected \\\"<<\\\" at token \\\"<<\\\"\\n0(784) : error C0000: syntax error, unexpected \\\">>\\\" at token \\\">>\\\"\\n0(784) : error C0159: invalid char \\\'d\\\' in integer constant suffix\\n0(784) : error C0159: invalid char \\\'c\\\' in integer constant suffix\\n0(784) : error C0159: invalid char \\\'b\\\' in integer constant suffix\\n0(784) : error C0158: invalid digit \\\'8\\\' in octal constant\\n0(786) : error C1503: undefined variable \\\"wind_offset\\\"\\n0(789) : error C0000: syntax error, unexpected \\\"<<\\\" at token \\\"<<\\\"\\n0(793) : error C0159: invalid char \\\'d\\\' in integer constant suffix\\n0(793) : error C0159: invalid char \\\'c\\\' in integer constant suffix\\n0(793) : error C0159: invalid char \\\'b\\\' in integer constant suffix\\n0(793) : error C0158: invalid digit \\\'8\\\' in octal constant\\n0(796) : error C1503: undefined variable \\\"cloud\\\"\\n0(796) : error C1503: undefined variable \\\"turbulence\\\"\\n0(825) : error C1020: invalid operands to \\\"/\\\"\\n\")))))" -PanicInfo: panicked at 'Failed to create window!: RenderError(PipelineError(Program(Pixel(CompilationFailed("0(776) : error C0000: syntax error, unexpected \"<<\" at token \"<<\"\n0(784) : error C0000: syntax error, unexpected \">>\" at token \">>\"\n0(784) : error C0159: invalid char \'d\' in integer constant suffix\n0(784) : error C0159: invalid char \'c\' in integer constant suffix\n0(784) : error C0159: invalid char \'b\' in integer constant suffix\n0(784) : error C0158: invalid digit \'8\' in octal constant\n0(786) : error C1503: undefined variable \"wind_offset\"\n0(789) : error C0000: syntax error, unexpected \"<<\" at token \"<<\"\n0(793) : error C0159: invalid char \'d\' in integer constant suffix\n0(793) : error C0159: invalid char \'c\' in integer constant suffix\n0(793) : error C0159: invalid char \'b\' in integer constant suffix\n0(793) : error C0158: invalid digit \'8\' in octal constant\n0(796) : error C1503: undefined variable \"cloud\"\n0(796) : error C1503: undefined variable \"turbulence\"\n0(825) : error C1020: invalid operands to \"/\"\n")))))', voxygen/src/main.rs:175:55 -Game version: 702f7e51 [2020-10-12] - -Backtrace: - 0: veloren_voxygen::main::{{closure}} - 1: std::panicking::rust_panic_with_hook - at /rustc/8e21bd0633b8d970646ee6eb706c9e8acfad19af/library/std/src/panicking.rs:573 - 2: std::panicking::begin_panic_handler::{{closure}} - at /rustc/8e21bd0633b8d970646ee6eb706c9e8acfad19af/library/std/src/panicking.rs:476 - 3: std::sys_common::backtrace::__rust_end_short_backtrace - at /rustc/8e21bd0633b8d970646ee6eb706c9e8acfad19af/library/std/src/sys_common/backtrace.rs:153 - 4: rust_begin_unwind - at /rustc/8e21bd0633b8d970646ee6eb706c9e8acfad19af/library/std/src/panicking.rs:475 - 5: core::panicking::panic_fmt - at /rustc/8e21bd0633b8d970646ee6eb706c9e8acfad19af/library/core/src/panicking.rs:85 - 6: core::option::expect_none_failed - at /rustc/8e21bd0633b8d970646ee6eb706c9e8acfad19af/library/core/src/option.rs:1274 - 7: veloren_voxygen::main - 8: std::sys_common::backtrace::__rust_begin_short_backtrace - 9: std::rt::lang_start::{{closure}} - -Oct 11 18:13:02.407  INFO veloren_voxygen::logging: Setup terminal and file logging. logdir="/home/james/Documents/Projects/rust/veloren/userdata/voxygen/logs" -Oct 11 18:13:02.590  INFO veloren_common::assets: Assets found path=/home/james/Documents/Projects/rust/veloren/assets -Oct 11 18:13:02.610  INFO winit::platform_impl::platform::x11::window: Guessed window scale factor: 1 -Oct 11 18:13:02.689  INFO veloren_voxygen::window: selected graphics device vendor="NVIDIA Corporation" renderer="GeForce 940MX/PCIe/SSE2" opengl_version=3.3.0, NVIDIA 450.66 glsl_version=3.30, NVIDIA via Cg compiler -Oct 11 18:13:02.861 ERROR veloren_voxygen: VOXYGEN HAS PANICKED - -A critical error has occurred and Voxygen has been forced to terminate in an unusual manner. Details about the error can be found below. - -> What should I do? - -We need your help to fix this! You can help by contacting us and reporting this problem. To do this, open an issue on the Veloren issue tracker: - -https://www.gitlab.com/veloren/veloren/issues/new - -If you're on the Veloren community Discord server, we'd be grateful if you could also post a message in the #support channel. - -> What should I include? - -The error information below will be useful in finding and fixing the problem. Please include as much information about your setup and the events that led up to the panic as possible. - -Voxygen has logged information about the problem (including this message) to the file /home/james/Documents/Projects/rust/veloren/userdata/voxygen/logs/voxygen-.log. Please include the contents of this file in your bug report. - -> Error information - -The information below is intended for developers and testers. - -Panic Payload: "Failed to create window!: RenderError(PipelineError(Program(Pixel(CompilationFailed(\"0(815) : error C1020: invalid operands to \\\"/\\\"\\n\")))))" -PanicInfo: panicked at 'Failed to create window!: RenderError(PipelineError(Program(Pixel(CompilationFailed("0(815) : error C1020: invalid operands to \"/\"\n")))))', voxygen/src/main.rs:175:55 -Game version: 88d6c645 [2020-10-12] - -Backtrace: - 0: veloren_voxygen::main::{{closure}} - 1: std::panicking::rust_panic_with_hook - at /rustc/8e21bd0633b8d970646ee6eb706c9e8acfad19af/library/std/src/panicking.rs:573 - 2: std::panicking::begin_panic_handler::{{closure}} - at /rustc/8e21bd0633b8d970646ee6eb706c9e8acfad19af/library/std/src/panicking.rs:476 - 3: std::sys_common::backtrace::__rust_end_short_backtrace - at /rustc/8e21bd0633b8d970646ee6eb706c9e8acfad19af/library/std/src/sys_common/backtrace.rs:153 - 4: rust_begin_unwind - at /rustc/8e21bd0633b8d970646ee6eb706c9e8acfad19af/library/std/src/panicking.rs:475 - 5: core::panicking::panic_fmt - at /rustc/8e21bd0633b8d970646ee6eb706c9e8acfad19af/library/core/src/panicking.rs:85 - 6: core::option::expect_none_failed - at /rustc/8e21bd0633b8d970646ee6eb706c9e8acfad19af/library/core/src/option.rs:1274 - 7: veloren_voxygen::main - 8: std::sys_common::backtrace::__rust_begin_short_backtrace - 9: std::rt::lang_start::{{closure}} - -Oct 11 18:17:38.536  INFO veloren_voxygen::logging: Setup terminal and file logging. logdir="/home/james/Documents/Projects/rust/veloren/userdata/voxygen/logs" -Oct 11 18:17:38.764  INFO veloren_common::assets: Assets found path=/home/james/Documents/Projects/rust/veloren/assets -Oct 11 18:17:38.786  INFO winit::platform_impl::platform::x11::window: Guessed window scale factor: 1 -Oct 11 18:17:38.882  INFO veloren_voxygen::window: selected graphics device vendor="NVIDIA Corporation" renderer="GeForce 940MX/PCIe/SSE2" opengl_version=3.3.0, NVIDIA 450.66 glsl_version=3.30, NVIDIA via Cg compiler -Oct 11 18:30:57.586  INFO veloren_voxygen::logging: Setup terminal and file logging. logdir="/home/james/Documents/Projects/rust/veloren/userdata/voxygen/logs" -Oct 11 18:30:57.777  INFO veloren_common::assets: Assets found path=/home/james/Documents/Projects/rust/veloren/assets -Oct 11 18:30:57.796  INFO winit::platform_impl::platform::x11::window: Guessed window scale factor: 1 -Oct 11 18:30:57.875  INFO veloren_voxygen::window: selected graphics device vendor="NVIDIA Corporation" renderer="GeForce 940MX/PCIe/SSE2" opengl_version=3.3.0, NVIDIA 450.66 glsl_version=3.30, NVIDIA via Cg compiler -Oct 11 18:30:58.071 ERROR veloren_voxygen: VOXYGEN HAS PANICKED - -A critical error has occurred and Voxygen has been forced to terminate in an unusual manner. Details about the error can be found below. - -> What should I do? - -We need your help to fix this! You can help by contacting us and reporting this problem. To do this, open an issue on the Veloren issue tracker: - -https://www.gitlab.com/veloren/veloren/issues/new - -If you're on the Veloren community Discord server, we'd be grateful if you could also post a message in the #support channel. - -> What should I include? - -The error information below will be useful in finding and fixing the problem. Please include as much information about your setup and the events that led up to the panic as possible. - -Voxygen has logged information about the problem (including this message) to the file /home/james/Documents/Projects/rust/veloren/userdata/voxygen/logs/voxygen-.log. Please include the contents of this file in your bug report. - -> Error information - -The information below is intended for developers and testers. - -Panic Payload: "Failed to create window!: RenderError(PipelineError(Program(Pixel(CompilationFailed(\"0(815) : error C1020: invalid operands to \\\"/\\\"\\n\")))))" -PanicInfo: panicked at 'Failed to create window!: RenderError(PipelineError(Program(Pixel(CompilationFailed("0(815) : error C1020: invalid operands to \"/\"\n")))))', voxygen/src/main.rs:175:55 -Game version: 88d6c645 [2020-10-12] - -Backtrace: - 0: veloren_voxygen::main::{{closure}} - 1: std::panicking::rust_panic_with_hook - at /rustc/8e21bd0633b8d970646ee6eb706c9e8acfad19af/library/std/src/panicking.rs:573 - 2: std::panicking::begin_panic_handler::{{closure}} - at /rustc/8e21bd0633b8d970646ee6eb706c9e8acfad19af/library/std/src/panicking.rs:476 - 3: std::sys_common::backtrace::__rust_end_short_backtrace - at /rustc/8e21bd0633b8d970646ee6eb706c9e8acfad19af/library/std/src/sys_common/backtrace.rs:153 - 4: rust_begin_unwind - at /rustc/8e21bd0633b8d970646ee6eb706c9e8acfad19af/library/std/src/panicking.rs:475 - 5: core::panicking::panic_fmt - at /rustc/8e21bd0633b8d970646ee6eb706c9e8acfad19af/library/core/src/panicking.rs:85 - 6: core::option::expect_none_failed - at /rustc/8e21bd0633b8d970646ee6eb706c9e8acfad19af/library/core/src/option.rs:1274 - 7: veloren_voxygen::main - 8: std::sys_common::backtrace::__rust_begin_short_backtrace - 9: std::rt::lang_start::{{closure}} - -Oct 11 18:43:31.798  INFO veloren_voxygen::logging: Setup terminal and file logging. logdir="/home/james/Documents/Projects/rust/veloren/userdata/voxygen/logs" -Oct 11 18:43:31.981  INFO veloren_common::assets: Assets found path=/home/james/Documents/Projects/rust/veloren/assets -Oct 11 18:43:32.010  INFO winit::platform_impl::platform::x11::window: Guessed window scale factor: 1 -Oct 11 18:43:32.094  INFO veloren_voxygen::window: selected graphics device vendor="NVIDIA Corporation" renderer="GeForce 940MX/PCIe/SSE2" opengl_version=3.3.0, NVIDIA 450.66 glsl_version=3.30, NVIDIA via Cg compiler -Oct 11 18:45:09.368  INFO veloren_voxygen::logging: Setup terminal and file logging. logdir="/home/james/Documents/Projects/rust/veloren/userdata/voxygen/logs" -Oct 11 18:45:09.555  INFO veloren_common::assets: Assets found path=/home/james/Documents/Projects/rust/veloren/assets -Oct 11 18:45:09.575  INFO winit::platform_impl::platform::x11::window: Guessed window scale factor: 1 -Oct 11 18:45:09.637  INFO veloren_voxygen::window: selected graphics device vendor="NVIDIA Corporation" renderer="GeForce 940MX/PCIe/SSE2" opengl_version=3.3.0, NVIDIA 450.66 glsl_version=3.30, NVIDIA via Cg compiler -Oct 11 18:45:11.166  INFO veloren_voxygen::singleplayer: Saves folder doesn't exist, but there is one in the old saves location, copying it to the new location -Oct 11 18:45:11.267  INFO veloren_server: Server is data dir is: /home/james/Documents/Projects/rust/veloren/userdata/singleplayer -Oct 11 18:45:11.267  INFO veloren_server: Authentication is disabled -Oct 11 18:45:21.481  INFO veloren_world::civ: all civilisations created initial_civ_count=48 -Oct 11 18:45:25.523  INFO veloren_world::civ: all sites placed cnt=192 -Oct 11 18:45:41.288  INFO veloren_server: Server version version="Pre-Alpha-2020-10-12 (88d6c645)" -Oct 11 18:45:41.288  INFO veloren_voxygen::singleplayer: Starting server-cli... -Oct 11 18:45:41.292  INFO scheduler{p=sjGg8V}: veloren_network::scheduler: Connecting Tcp to: 127.0.0.1:21040 -Oct 11 18:45:41.292  INFO scheduler{p=ILg9mh}: veloren_network::scheduler: Accepting Tcp from: 127.0.0.1:36746 -Oct 11 18:45:41.293  INFO scheduler{p=sjGg8V}::handshake{cid=0}: veloren_network::channel: This Handshake is now configured! pid=ILg9mh -Oct 11 18:45:41.293  INFO scheduler{p=ILg9mh}::handshake{cid=0}: veloren_network::channel: This Handshake is now configured! pid=sjGg8V -Oct 11 18:45:41.492  INFO veloren_voxygen::singleplayer: Client connected! -Oct 11 18:45:42.631  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32401.596704352)) -Oct 11 18:45:42.631  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32409.786351744)) -Oct 11 18:45:42.631  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32410.908720815998)) -Oct 11 18:45:42.631  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32411.626319519997)) -Oct 11 18:45:42.631  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32412.018207839996)) -Oct 11 18:45:42.631  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32412.211516559997)) -Oct 11 18:45:42.631  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32412.303108575998)) -Oct 11 18:45:42.631  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32412.481935408)) -Oct 11 18:45:42.631  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32412.873735168)) -Oct 11 18:45:42.631  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32413.659428783998)) -Oct 11 18:45:42.631  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32414.857275551996)) -Oct 11 18:45:42.631  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32416.500438383995)) -Oct 11 18:45:42.631  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32418.522596543997)) -Oct 11 18:45:42.631  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32420.823689951998)) -Oct 11 18:45:42.631  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32423.277984528)) -Oct 11 18:45:42.631  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32425.771826016)) -Oct 11 18:45:42.631  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32428.216514256)) -Oct 11 18:45:42.631  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32430.538930608)) -Oct 11 18:45:42.631  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32432.690225568)) -Oct 11 18:45:42.631  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32434.592518416)) -Oct 11 18:45:42.631  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32436.338156352)) -Oct 11 18:45:42.632  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32437.884218208)) -Oct 11 18:45:42.632  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32439.251325072)) -Oct 11 18:45:42.632  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32440.472470704)) -Oct 11 18:45:42.632  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32441.594921952)) -Oct 11 18:45:42.632  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32442.667095216002)) -Oct 11 18:45:42.632  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32443.740258960002)) -Oct 11 18:45:42.632  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32444.86450944)) -Oct 11 18:45:42.632  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32446.089736272002)) -Oct 11 18:45:42.632  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32447.442419664003)) -Oct 11 18:45:42.632  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32448.936762)) -Oct 11 18:45:42.632  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32450.56528152)) -Oct 11 18:45:42.632  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32452.310993184)) -Oct 11 18:45:42.632  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32454.142392864)) -Oct 11 18:45:42.632  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32456.022858144)) -Oct 11 18:45:42.632  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32457.918928272)) -Oct 11 18:45:42.632  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32459.799781056)) -Oct 11 18:45:42.632  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32461.636173504)) -Oct 11 18:45:42.632  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32463.412895424)) -Oct 11 18:45:42.645  INFO veloren_server::login_provider: New User username="singleplayer" -Oct 11 18:45:42.647  WARN veloren_client: Ignoring what the server send till registered: Pong -Oct 11 18:47:45.068  WARN veloren_voxygen::audio::soundcache: SoundCache: Failed to load sound name="voxygen.audio.sfx.placeholder" -Oct 11 18:51:46.829  INFO scheduler{p=sjGg8V}::participant{pid=ILg9mh}: veloren_network::participant: Channel got closed cid=0 -Oct 11 18:51:46.830  INFO scheduler{p=ILg9mh}::participant{pid=sjGg8V}:{cid=0}: veloren_network::protocols: Closing tcp protocol due to read error e=Kind(UnexpectedEof) -Oct 11 18:51:46.830  INFO scheduler{p=ILg9mh}::participant{pid=sjGg8V}: veloren_network::participant: Channel got closed cid=0 -Oct 11 19:38:50.989  INFO veloren_voxygen::logging: Setup terminal and file logging. logdir="/home/james/Documents/Projects/rust/veloren/userdata/voxygen/logs" -Oct 11 19:38:51.499  INFO veloren_common::assets: Assets found path=/home/james/Documents/Projects/rust/veloren/assets -Oct 11 19:38:51.518  INFO winit::platform_impl::platform::x11::window: Guessed window scale factor: 1 -Oct 11 19:38:51.618  INFO veloren_voxygen::window: selected graphics device vendor="NVIDIA Corporation" renderer="GeForce 940MX/PCIe/SSE2" opengl_version=3.3.0, NVIDIA 450.66 glsl_version=3.30, NVIDIA via Cg compiler -Oct 11 19:38:53.656  INFO veloren_server: Server is data dir is: /home/james/Documents/Projects/rust/veloren/userdata/singleplayer -Oct 11 19:38:53.656  INFO veloren_server: Authentication is disabled -Oct 11 19:39:02.245  INFO veloren_world::civ: all civilisations created initial_civ_count=48 -Oct 11 19:39:05.658  INFO veloren_world::civ: all sites placed cnt=192 -Oct 11 19:39:18.263  INFO veloren_server: Server version version="Pre-Alpha-2020-10-11 (8bd1f763)" -Oct 11 19:39:18.263  INFO veloren_voxygen::singleplayer: Starting server-cli... -Oct 11 19:39:18.692  INFO scheduler{p=4kn15H}: veloren_network::scheduler: Accepting Tcp from: 127.0.0.1:50694 -Oct 11 19:39:18.692  INFO scheduler{p=rdN34G}: veloren_network::scheduler: Connecting Tcp to: 127.0.0.1:17428 -Oct 11 19:39:18.693  INFO scheduler{p=rdN34G}::handshake{cid=0}: veloren_network::channel: This Handshake is now configured! pid=4kn15H -Oct 11 19:39:18.693  INFO scheduler{p=4kn15H}::handshake{cid=0}: veloren_network::channel: This Handshake is now configured! pid=rdN34G -Oct 11 19:39:18.876  INFO veloren_voxygen::singleplayer: Client connected! -Oct 11 19:39:19.753  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32422.05936024)) -Oct 11 19:39:19.753  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32429.407656144)) -Oct 11 19:39:19.753  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32430.61712952)) -Oct 11 19:39:19.753  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32431.47577872)) -Oct 11 19:39:19.753  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32432.0034276)) -Oct 11 19:39:19.753  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32432.35027992)) -Oct 11 19:39:19.754  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32432.624620128)) -Oct 11 19:39:19.754  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32432.996397888)) -Oct 11 19:39:19.754  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32433.541361568)) -Oct 11 19:39:19.754  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32434.400804112)) -Oct 11 19:39:19.754  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32435.642454768)) -Oct 11 19:39:19.754  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32437.270977744)) -Oct 11 19:39:19.754  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32439.234546048)) -Oct 11 19:39:19.754  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32441.44027032)) -Oct 11 19:39:19.754  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32443.783458335998)) -Oct 11 19:39:19.754  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32446.171296864)) -Oct 11 19:39:19.754  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32448.516490079997)) -Oct 11 19:39:19.754  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32450.755642271997)) -Oct 11 19:39:19.754  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32452.842910223997)) -Oct 11 19:39:19.754  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32454.755747231997)) -Oct 11 19:39:19.754  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32456.481281663997)) -Oct 11 19:39:19.754  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32458.025927999995)) -Oct 11 19:39:19.754  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32459.408609759994)) -Oct 11 19:39:19.754  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32460.660578351995)) -Oct 11 19:39:19.754  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32461.827083807995)) -Oct 11 19:39:19.754  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32462.946510863996)) -Oct 11 19:39:19.754  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32464.069834463997)) -Oct 11 19:39:19.754  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32465.247272591998)) -Oct 11 19:39:19.754  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32466.515769648)) -Oct 11 19:39:19.754  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32467.897204896)) -Oct 11 19:39:19.754  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32469.405831599997)) -Oct 11 19:39:19.754  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32471.036367888)) -Oct 11 19:39:19.779  INFO veloren_server::login_provider: New User username="singleplayer" -Oct 11 19:39:19.784  WARN veloren_client: Ignoring what the server send till registered: Pong -Oct 11 19:40:50.805  WARN veloren_voxygen::audio::soundcache: SoundCache: Failed to load sound name="voxygen.audio.sfx.placeholder" -Oct 11 19:41:48.561  INFO scheduler{p=rdN34G}::participant{pid=4kn15H}: veloren_network::participant: Channel got closed cid=0 -Oct 11 19:41:48.561  INFO scheduler{p=4kn15H}::participant{pid=rdN34G}:{cid=0}: veloren_network::protocols: Closing tcp protocol due to read error e=Kind(UnexpectedEof) -Oct 11 19:41:48.561  INFO scheduler{p=4kn15H}::participant{pid=rdN34G}: veloren_network::participant: Channel got closed cid=0 -Oct 11 19:45:44.326  INFO veloren_voxygen::logging: Setup terminal and file logging. logdir="/home/james/Documents/Projects/rust/veloren/userdata/voxygen/logs" -Oct 11 19:45:44.964  INFO veloren_common::assets: Assets found path=/home/james/Documents/Projects/rust/veloren/assets -Oct 11 19:45:45.002  INFO winit::platform_impl::platform::x11::window: Guessed window scale factor: 1 -Oct 11 19:45:45.138  INFO veloren_voxygen::window: selected graphics device vendor="NVIDIA Corporation" renderer="GeForce 940MX/PCIe/SSE2" opengl_version=3.3.0, NVIDIA 450.66 glsl_version=3.30, NVIDIA via Cg compiler -Oct 11 19:45:47.380  INFO veloren_server: Server is data dir is: /home/james/Documents/Projects/rust/veloren/userdata/singleplayer -Oct 11 19:45:47.381  INFO veloren_server: Authentication is disabled -Oct 11 19:45:57.634  INFO veloren_world::civ: all civilisations created initial_civ_count=48 -Oct 11 19:46:01.221  INFO veloren_world::civ: all sites placed cnt=192 -Oct 11 19:46:17.198  INFO veloren_server: Server version version="Pre-Alpha-2020-10-12 (88d6c645)" -Oct 11 19:46:17.198  INFO veloren_voxygen::singleplayer: Starting server-cli... -Oct 11 19:46:17.413  INFO scheduler{p=B4GN1M}: veloren_network::scheduler: Connecting Tcp to: 127.0.0.1:20264 -Oct 11 19:46:17.413  INFO scheduler{p=/jADhb}: veloren_network::scheduler: Accepting Tcp from: 127.0.0.1:47894 -Oct 11 19:46:17.414  INFO scheduler{p=B4GN1M}::handshake{cid=0}: veloren_network::channel: This Handshake is now configured! pid=/jADhb -Oct 11 19:46:17.416  INFO scheduler{p=/jADhb}::handshake{cid=0}: veloren_network::channel: This Handshake is now configured! pid=B4GN1M -Oct 11 19:46:17.698  INFO veloren_voxygen::singleplayer: Client connected! -Oct 11 19:46:18.800  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32411.063976671994)) -Oct 11 19:46:18.800  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32424.006517103993)) -Oct 11 19:46:18.800  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32424.935257583995)) -Oct 11 19:46:18.800  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32425.278388367995)) -Oct 11 19:46:18.800  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32425.368757103995)) -Oct 11 19:46:18.800  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32425.392961247995)) -Oct 11 19:46:18.800  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32425.417337663996)) -Oct 11 19:46:18.800  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32425.461246623996)) -Oct 11 19:46:18.800  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32425.533457343998)) -Oct 11 19:46:18.800  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32425.824586895997)) -Oct 11 19:46:18.800  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32426.486599391996)) -Oct 11 19:46:18.800  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32427.616724447995)) -Oct 11 19:46:18.800  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32429.224074431993)) -Oct 11 19:46:18.800  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32431.242758447992)) -Oct 11 19:46:18.800  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32433.56481700799)) -Oct 11 19:46:18.800  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32436.12195892799)) -Oct 11 19:46:18.800  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32438.60421983999)) -Oct 11 19:46:18.800  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32441.08186910399)) -Oct 11 19:46:18.800  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32443.43790590399)) -Oct 11 19:46:18.800  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32445.63919703999)) -Oct 11 19:46:18.800  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32447.627582207988)) -Oct 11 19:46:18.800  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32449.406751359988)) -Oct 11 19:46:18.800  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32450.97355751999)) -Oct 11 19:46:18.800  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32452.35679972799)) -Oct 11 19:46:18.800  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32453.57595835199)) -Oct 11 19:46:18.800  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32454.67442942399)) -Oct 11 19:46:18.800  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32455.71413510399)) -Oct 11 19:46:18.800  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32456.75004782399)) -Oct 11 19:46:18.800  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32457.83747951999)) -Oct 11 19:46:18.800  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32459.03676340799)) -Oct 11 19:46:18.800  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32460.357089999987)) -Oct 11 19:46:18.800  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32461.823537999986)) -Oct 11 19:46:18.800  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32463.436603103986)) -Oct 11 19:46:18.800  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32465.175466415985)) -Oct 11 19:46:18.800  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32467.012395599984)) -Oct 11 19:46:18.800  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32468.901964175984)) -Oct 11 19:46:18.800  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32470.817712767985)) -Oct 11 19:46:18.800  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32472.719038559986)) -Oct 11 19:46:18.800  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32474.578426559987)) -Oct 11 19:46:18.800  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32476.372692383986)) -Oct 11 19:46:18.825  INFO veloren_server::login_provider: New User username="singleplayer" -Oct 11 19:46:18.831  WARN veloren_client: Ignoring what the server send till registered: Pong -Oct 11 19:46:59.575  WARN veloren_voxygen::audio::soundcache: SoundCache: Failed to load sound name="voxygen.audio.sfx.placeholder" -Oct 11 19:53:12.266  INFO scheduler{p=B4GN1M}::participant{pid=/jADhb}: veloren_network::participant: Channel got closed cid=0 -Oct 11 19:53:12.266  INFO scheduler{p=/jADhb}::participant{pid=B4GN1M}:{cid=0}: veloren_network::protocols: Closing tcp protocol due to read error e=Kind(UnexpectedEof) -Oct 11 19:53:12.266  INFO scheduler{p=/jADhb}::participant{pid=B4GN1M}: veloren_network::participant: Channel got closed cid=0 -Oct 12 12:05:28.209  INFO veloren_voxygen::logging: Setup terminal and file logging. logdir="/home/james/Documents/Projects/rust/veloren/userdata/voxygen/logs" -Oct 12 12:05:28.783  INFO veloren_common::assets: Assets found path=/home/james/Documents/Projects/rust/veloren/assets -Oct 12 12:05:28.800  INFO winit::platform_impl::platform::x11::window: Guessed window scale factor: 1 -Oct 12 12:05:28.859  INFO veloren_voxygen::window: selected graphics device vendor="NVIDIA Corporation" renderer="GeForce 940MX/PCIe/SSE2" opengl_version=3.3.0, NVIDIA 450.66 glsl_version=3.30, NVIDIA via Cg compiler -Oct 12 12:05:46.002  INFO veloren_server: Server is data dir is: /home/james/Documents/Projects/rust/veloren/userdata/singleplayer -Oct 12 12:05:46.002  INFO veloren_server: Authentication is disabled -Oct 12 12:05:55.855  INFO veloren_world::civ: all civilisations created initial_civ_count=48 -Oct 12 12:05:59.768  INFO veloren_world::civ: all sites placed cnt=192 -Oct 12 12:06:14.173  INFO veloren_server: Server version version="Pre-Alpha-2020-10-12 (34caebea)" -Oct 12 12:06:14.173  INFO veloren_voxygen::singleplayer: Starting server-cli... -Oct 12 12:06:16.023  INFO scheduler{p=bkeuPw}: veloren_network::scheduler: Connecting Tcp to: 127.0.0.1:18291 -Oct 12 12:06:16.023  INFO scheduler{p=aQiAfK}: veloren_network::scheduler: Accepting Tcp from: 127.0.0.1:47260 -Oct 12 12:06:16.024  INFO scheduler{p=bkeuPw}::handshake{cid=0}: veloren_network::channel: This Handshake is now configured! pid=aQiAfK -Oct 12 12:06:16.024  INFO scheduler{p=aQiAfK}::handshake{cid=0}: veloren_network::channel: This Handshake is now configured! pid=bkeuPw -Oct 12 12:06:16.178  INFO veloren_voxygen::singleplayer: Client connected! -Oct 12 12:06:17.053  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32488.92802972801)) -Oct 12 12:06:17.058  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32496.21413668801)) -Oct 12 12:06:17.058  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32497.40452857601)) -Oct 12 12:06:17.058  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32498.23670424001)) -Oct 12 12:06:17.058  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32498.790442368012)) -Oct 12 12:06:17.058  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32499.14344540801)) -Oct 12 12:06:17.058  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32499.42639355201)) -Oct 12 12:06:17.058  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32499.77460489601)) -Oct 12 12:06:17.058  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32500.32708067201)) -Oct 12 12:06:17.058  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32501.19538987201)) -Oct 12 12:06:17.058  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32502.44842488001)) -Oct 12 12:06:17.058  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32504.083048224013)) -Oct 12 12:06:17.058  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32506.048014816013)) -Oct 12 12:06:17.058  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32508.25465123201)) -Oct 12 12:06:17.058  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32510.597602320013)) -Oct 12 12:06:17.058  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32512.982084064013)) -Oct 12 12:06:17.058  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32515.323684480012)) -Oct 12 12:06:17.058  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32517.55845307201)) -Oct 12 12:06:17.058  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32519.640895584012)) -Oct 12 12:06:17.058  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32521.54702699201)) -Oct 12 12:06:17.058  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32523.26714236801)) -Oct 12 12:06:17.058  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32524.80896092801)) -Oct 12 12:06:17.058  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32526.18868108801)) -Oct 12 12:06:17.058  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32527.43857876801)) -Oct 12 12:06:17.058  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32528.599880640013)) -Oct 12 12:06:17.058  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32529.721435056013)) -Oct 12 12:06:17.058  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32530.848714144013)) -Oct 12 12:06:17.058  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32532.030462288014)) -Oct 12 12:06:17.058  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32533.304371728012)) -Oct 12 12:06:17.058  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32534.691932688012)) -Oct 12 12:06:17.058  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32536.20476419201)) -Oct 12 12:06:17.058  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32537.83693339201)) -Oct 12 12:06:17.081  INFO veloren_server::login_provider: New User username="singleplayer" -Oct 12 12:06:17.091  WARN veloren_client: Ignoring what the server send till registered: Pong -Oct 12 12:14:38.826  INFO scheduler{p=bkeuPw}::participant{pid=aQiAfK}: veloren_network::participant: Channel got closed cid=0 -Oct 12 12:14:38.826  INFO scheduler{p=aQiAfK}::participant{pid=bkeuPw}:{cid=0}: veloren_network::protocols: Closing tcp protocol due to read error e=Kind(UnexpectedEof) -Oct 12 12:14:38.827  INFO scheduler{p=aQiAfK}::participant{pid=bkeuPw}: veloren_network::participant: Channel got closed cid=0 -Oct 12 12:16:48.730  INFO veloren_voxygen::logging: Setup terminal and file logging. logdir="/home/james/Documents/Projects/rust/veloren/userdata/voxygen/logs" -Oct 12 12:16:49.263  INFO veloren_common::assets: Assets found path=/home/james/Documents/Projects/rust/veloren/assets -Oct 12 12:16:49.281  INFO winit::platform_impl::platform::x11::window: Guessed window scale factor: 1 -Oct 12 12:16:49.338  INFO veloren_voxygen::window: selected graphics device vendor="NVIDIA Corporation" renderer="GeForce 940MX/PCIe/SSE2" opengl_version=3.3.0, NVIDIA 450.66 glsl_version=3.30, NVIDIA via Cg compiler -Oct 12 12:16:50.945  INFO veloren_server: Server is data dir is: /home/james/Documents/Projects/rust/veloren/userdata/singleplayer -Oct 12 12:16:50.945  INFO veloren_server: Authentication is disabled -Oct 12 12:17:00.806  INFO veloren_world::civ: all civilisations created initial_civ_count=48 -Oct 12 12:17:04.296  INFO veloren_world::civ: all sites placed cnt=192 -Oct 12 12:17:19.181  INFO veloren_server: Server version version="Pre-Alpha-2020-10-12 (34caebea)" -Oct 12 12:17:19.181  INFO veloren_voxygen::singleplayer: Starting server-cli... -Oct 12 12:17:20.981  INFO scheduler{p=SzLgDg}: veloren_network::scheduler: Accepting Tcp from: 127.0.0.1:60422 -Oct 12 12:17:20.981  INFO scheduler{p=a9QNsC}: veloren_network::scheduler: Connecting Tcp to: 127.0.0.1:23461 -Oct 12 12:17:20.982  INFO scheduler{p=a9QNsC}::handshake{cid=0}: veloren_network::channel: This Handshake is now configured! pid=SzLgDg -Oct 12 12:17:20.983  INFO scheduler{p=SzLgDg}::handshake{cid=0}: veloren_network::channel: This Handshake is now configured! pid=a9QNsC -Oct 12 12:17:21.157  INFO veloren_voxygen::singleplayer: Client connected! -Oct 12 12:17:22.042  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32487.031819728007)) -Oct 12 12:17:22.042  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32494.864288272005)) -Oct 12 12:17:22.042  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32496.008849712005)) -Oct 12 12:17:22.042  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32496.770821968006)) -Oct 12 12:17:22.042  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32497.242128448008)) -Oct 12 12:17:22.042  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32497.506182112007)) -Oct 12 12:17:22.042  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32497.716438768006)) -Oct 12 12:17:22.042  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32497.961612592007)) -Oct 12 12:17:22.042  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32498.43479976001)) -Oct 12 12:17:22.042  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32499.24511560001)) -Oct 12 12:17:22.042  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32500.46601105601)) -Oct 12 12:17:22.042  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32502.10729718401)) -Oct 12 12:17:22.042  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32504.107448736013)) -Oct 12 12:17:22.042  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32506.363686240013)) -Oct 12 12:17:22.042  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32508.772547568013)) -Oct 12 12:17:22.042  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32511.221176080013)) -Oct 12 12:17:22.042  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32513.622217728014)) -Oct 12 12:17:22.042  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32515.904499120013)) -Oct 12 12:17:22.042  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32518.025724576015)) -Oct 12 12:17:22.042  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32519.953731072015)) -Oct 12 12:17:22.042  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32521.684768800016)) -Oct 12 12:17:22.042  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32523.224175696017)) -Oct 12 12:17:22.042  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32524.593438528016)) -Oct 12 12:17:22.042  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32525.820961392015)) -Oct 12 12:17:22.042  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32526.954828816015)) -Oct 12 12:17:22.042  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32528.044226208014)) -Oct 12 12:17:22.042  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32529.135946080016)) -Oct 12 12:17:22.042  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32530.281263904017)) -Oct 12 12:17:22.042  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32531.524068576018)) -Oct 12 12:17:22.042  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32532.89112681602)) -Oct 12 12:17:22.042  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32534.39458708802)) -Oct 12 12:17:22.042  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32536.02989121602)) -Oct 12 12:17:22.051  INFO veloren_server::login_provider: New User username="singleplayer" -Oct 12 12:17:22.059  WARN veloren_client: Ignoring what the server send till registered: Pong -Oct 12 12:19:03.158  WARN veloren_voxygen::audio::soundcache: SoundCache: Failed to load sound name="voxygen.audio.sfx.placeholder" -Oct 12 12:19:48.619  INFO scheduler{p=a9QNsC}::participant{pid=SzLgDg}: veloren_network::participant: Channel got closed cid=0 -Oct 12 12:19:48.619  INFO scheduler{p=SzLgDg}::participant{pid=a9QNsC}:{cid=0}: veloren_network::protocols: Closing tcp protocol due to read error e=Kind(UnexpectedEof) -Oct 12 12:19:48.619  INFO scheduler{p=SzLgDg}::participant{pid=a9QNsC}: veloren_network::participant: Channel got closed cid=0 -Oct 12 12:22:42.331  INFO veloren_voxygen::logging: Setup terminal and file logging. logdir="/home/james/Documents/Projects/rust/veloren/userdata/voxygen/logs" -Oct 12 12:22:42.845  INFO veloren_common::assets: Assets found path=/home/james/Documents/Projects/rust/veloren/assets -Oct 12 12:22:42.864  INFO winit::platform_impl::platform::x11::window: Guessed window scale factor: 1 -Oct 12 12:22:42.929  INFO veloren_voxygen::window: selected graphics device vendor="NVIDIA Corporation" renderer="GeForce 940MX/PCIe/SSE2" opengl_version=3.3.0, NVIDIA 450.66 glsl_version=3.30, NVIDIA via Cg compiler -Oct 12 12:22:45.578  INFO veloren_server: Server is data dir is: /home/james/Documents/Projects/rust/veloren/userdata/singleplayer -Oct 12 12:22:45.579  INFO veloren_server: Authentication is disabled -Oct 12 12:22:56.225  INFO veloren_world::civ: all civilisations created initial_civ_count=48 -Oct 12 12:22:59.711  INFO veloren_world::civ: all sites placed cnt=192 -Oct 12 12:23:16.276  INFO veloren_server: Server version version="Pre-Alpha-2020-10-12 (34caebea)" -Oct 12 12:23:16.276  INFO veloren_voxygen::singleplayer: Starting server-cli... -Oct 12 12:23:20.599  INFO scheduler{p=MGR054}: veloren_network::scheduler: Connecting Tcp to: 127.0.0.1:24773 -Oct 12 12:23:20.599  INFO scheduler{p=dzLtmj}: veloren_network::scheduler: Accepting Tcp from: 127.0.0.1:60338 -Oct 12 12:23:20.606  INFO scheduler{p=MGR054}::handshake{cid=0}: veloren_network::channel: This Handshake is now configured! pid=dzLtmj -Oct 12 12:23:20.606  INFO scheduler{p=dzLtmj}::handshake{cid=0}: veloren_network::channel: This Handshake is now configured! pid=MGR054 -Oct 12 12:23:20.847  INFO veloren_voxygen::singleplayer: Client connected! -Oct 12 12:23:21.842  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32609.02690776)) -Oct 12 12:23:21.842  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32619.440602751998)) -Oct 12 12:23:21.842  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32620.465254095998)) -Oct 12 12:23:21.842  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32620.99991448)) -Oct 12 12:23:21.842  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32621.124989472)) -Oct 12 12:23:21.842  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32621.156733696)) -Oct 12 12:23:21.842  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32621.1792924)) -Oct 12 12:23:21.842  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32621.213735376)) -Oct 12 12:23:21.842  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32621.460529824002)) -Oct 12 12:23:21.842  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32622.011067072002)) -Oct 12 12:23:21.842  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32622.998664144)) -Oct 12 12:23:21.842  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32624.473578624)) -Oct 12 12:23:21.842  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32626.390874112003)) -Oct 12 12:23:21.842  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32628.634983696003)) -Oct 12 12:23:21.842  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32631.097510800002)) -Oct 12 12:23:21.842  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32633.644413936003)) -Oct 12 12:23:21.842  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32636.172348912)) -Oct 12 12:23:21.842  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32638.59134064)) -Oct 12 12:23:21.842  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32640.85016976)) -Oct 12 12:23:21.842  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32642.90700912)) -Oct 12 12:23:21.842  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32644.742364816)) -Oct 12 12:23:21.842  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32646.35959848)) -Oct 12 12:23:21.842  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32647.773400176)) -Oct 12 12:23:21.842  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32649.018852432)) -Oct 12 12:23:21.842  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32650.134614784)) -Oct 12 12:23:21.842  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32651.174654256003)) -Oct 12 12:23:21.842  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32652.195674352002)) -Oct 12 12:23:21.842  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32653.256941776002)) -Oct 12 12:23:21.842  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32654.409903792002)) -Oct 12 12:23:21.842  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32655.6924924)) -Oct 12 12:23:21.842  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32657.127760992)) -Oct 12 12:23:21.842  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32658.716405952)) -Oct 12 12:23:21.842  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32660.439022176)) -Oct 12 12:23:21.842  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32662.266582336)) -Oct 12 12:23:21.842  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32664.160049664)) -Oct 12 12:23:21.842  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(32666.082284016)) -Oct 12 12:23:21.859  INFO veloren_server::login_provider: New User username="singleplayer" -Oct 12 12:23:21.866  WARN veloren_client: Ignoring what the server send till registered: Pong -Oct 12 12:24:39.597  INFO scheduler{p=MGR054}::participant{pid=dzLtmj}: veloren_network::participant: Channel got closed cid=0 -Oct 12 12:24:39.597  INFO scheduler{p=dzLtmj}::participant{pid=MGR054}:{cid=0}: veloren_network::protocols: Closing tcp protocol due to read error e=Kind(UnexpectedEof) -Oct 12 12:24:39.597  INFO scheduler{p=dzLtmj}::participant{pid=MGR054}: veloren_network::participant: Channel got closed cid=0 -Oct 12 12:32:03.571  INFO veloren_voxygen::logging: Setup terminal and file logging. logdir="/home/james/Documents/Projects/rust/veloren/userdata/voxygen/logs" -Oct 12 12:32:03.869  INFO veloren_common::assets: Assets found path=/home/james/Documents/Projects/rust/veloren/assets -Oct 12 12:32:03.886  INFO winit::platform_impl::platform::x11::window: Guessed window scale factor: 1 -Oct 12 12:32:03.934  INFO veloren_voxygen::window: selected graphics device vendor="NVIDIA Corporation" renderer="GeForce 940MX/PCIe/SSE2" opengl_version=3.3.0, NVIDIA 450.66 glsl_version=3.30, NVIDIA via Cg compiler -Oct 12 12:32:32.571  INFO scheduler{p=RTuK4S}: veloren_network::scheduler: Connecting Tcp to: 45.136.30.39:14004 -Oct 12 12:32:33.558  INFO scheduler{p=RTuK4S}::handshake{cid=0}: veloren_network::channel: This Handshake is now configured! pid=1BNABt -Oct 12 12:32:36.914  WARN veloren_client: Server is running b920439a[2020-10-11], you are running d4c97628[2020-10-12], versions might be incompatible! -Oct 12 12:32:38.717  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657619.7010520529)) -Oct 12 12:32:38.717  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657626.1632259089)) -Oct 12 12:32:38.717  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657627.3811961969)) -Oct 12 12:32:38.717  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657628.2866997329)) -Oct 12 12:32:38.717  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657628.9427667089)) -Oct 12 12:32:38.717  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657629.4497873489)) -Oct 12 12:32:38.717  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657629.9070680368)) -Oct 12 12:32:38.717  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657630.4363415729)) -Oct 12 12:32:38.717  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657631.1539781969)) -Oct 12 12:32:38.717  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657632.1483596849)) -Oct 12 12:32:38.717  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657633.4679605168)) -Oct 12 12:32:38.717  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657635.1110101648)) -Oct 12 12:32:38.717  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657637.0316239889)) -Oct 12 12:32:38.717  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657639.1548881489)) -Oct 12 12:32:38.717  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657641.3933106929)) -Oct 12 12:32:38.717  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657643.6650479248)) -Oct 12 12:32:38.717  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657645.8997357328)) -Oct 12 12:32:38.717  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657648.0416267728)) -Oct 12 12:32:38.717  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657650.0527723408)) -Oct 12 12:32:38.717  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657651.9101086769)) -Oct 12 12:32:38.717  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657653.6055620369)) -Oct 12 12:32:38.717  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657655.1461207889)) -Oct 12 12:32:38.717  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657656.5482438928)) -Oct 12 12:32:38.717  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657657.8406524848)) -Oct 12 12:32:38.717  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657659.0592908368)) -Oct 12 12:32:38.718  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657660.2420117968)) -Oct 12 12:32:38.718  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657661.4340680848)) -Oct 12 12:32:38.718  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657662.6736748049)) -Oct 12 12:32:38.718  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657663.9926110768)) -Oct 12 12:32:38.718  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657665.4110306128)) -Oct 12 12:32:38.718  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657666.9339300687)) -Oct 12 12:32:38.718  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657668.5595156368)) -Oct 12 12:32:38.718  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657670.2717394767)) -Oct 12 12:32:38.718  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657672.0444828687)) -Oct 12 12:32:38.718  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657673.8490750768)) -Oct 12 12:32:38.718  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657675.6760837648)) -Oct 12 12:32:38.718  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657677.4892442607)) -Oct 12 12:32:38.718  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657679.2621059247)) -Oct 12 12:32:38.718  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657680.9951866287)) -Oct 12 12:32:38.718  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657682.6701389487)) -Oct 12 12:32:38.718  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657684.2862141808)) -Oct 12 12:32:38.718  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657685.8451280848)) -Oct 12 12:32:38.718  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657687.3544410447)) -Oct 12 12:32:38.718  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657688.8268190607)) -Oct 12 12:32:38.718  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657690.2750960847)) -Oct 12 12:32:38.718  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657691.7153319087)) -Oct 12 12:32:38.718  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657693.1644663566)) -Oct 12 12:32:38.718  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657694.6331784206)) -Oct 12 12:32:38.718  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657696.1299560847)) -Oct 12 12:32:38.718  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657697.6624086447)) -Oct 12 12:32:38.718  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657699.2316158607)) -Oct 12 12:32:38.718  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657700.8379224207)) -Oct 12 12:32:38.718  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657702.4712837967)) -Oct 12 12:32:38.718  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657704.1266022447)) -Oct 12 12:32:38.718  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657705.7952365166)) -Oct 12 12:32:38.718  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657707.4631286606)) -Oct 12 12:32:38.718  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657709.1252216366)) -Oct 12 12:32:38.718  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657710.7758955086)) -Oct 12 12:32:38.718  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657712.4061728365)) -Oct 12 12:32:38.718  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657714.0177347246)) -Oct 12 12:32:38.718  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657715.6074029485)) -Oct 12 12:32:38.718  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657717.1763028685)) -Oct 12 12:32:38.718  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657718.7280989005)) -Oct 12 12:32:38.718  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657720.2683359085)) -Oct 12 12:32:38.718  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657721.8027886285)) -Oct 12 12:32:38.718  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657723.3368426604)) -Oct 12 12:32:38.718  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657724.8745635564)) -Oct 12 12:32:38.718  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657726.4210850603)) -Oct 12 12:32:38.718  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657727.9805477003)) -Oct 12 12:32:38.718  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657729.5508296363)) -Oct 12 12:32:38.718  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657731.1329986763)) -Oct 12 12:32:38.718  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657732.7271961323)) -Oct 12 12:32:38.718  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657734.3308591883)) -Oct 12 12:32:38.718  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657735.9406951404)) -Oct 12 12:32:38.718  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657737.5555074444)) -Oct 12 12:32:38.718  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657739.1700884365)) -Oct 12 12:32:38.718  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657740.7799522765)) -Oct 12 12:32:38.718  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657742.3835153485)) -Oct 12 12:32:38.719  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657743.9816595085)) -Oct 12 12:32:38.719  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657745.5743170766)) -Oct 12 12:32:38.719  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657747.1573628366)) -Oct 12 12:32:38.719  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657748.7332867887)) -Oct 12 12:32:38.719  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657750.3049619726)) -Oct 12 12:32:38.719  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657751.8731520686)) -Oct 12 12:32:38.719  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657753.4392588686)) -Oct 12 12:32:38.719  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657755.0047905325)) -Oct 12 12:32:38.719  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657756.5722847246)) -Oct 12 12:32:38.719  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657758.1435684685)) -Oct 12 12:32:38.719  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657759.7200762446)) -Oct 12 12:32:38.719  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657761.3006429486)) -Oct 12 12:32:38.719  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657762.8857623086)) -Oct 12 12:32:38.719  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657764.4756739406)) -Oct 12 12:32:38.719  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657766.0691196686)) -Oct 12 12:32:38.719  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657767.6657729966)) -Oct 12 12:32:38.719  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657769.2596039246)) -Oct 12 12:32:38.719  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657770.8546136366)) -Oct 12 12:32:38.719  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657772.4475707726)) -Oct 12 12:32:38.719  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657774.0375405326)) -Oct 12 12:32:38.719  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657775.6250918607)) -Oct 12 12:32:38.719  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657777.2097024206)) -Oct 12 12:32:38.719  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657778.7913294926)) -Oct 12 12:32:38.719  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657780.3709843406)) -Oct 12 12:32:38.719  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657781.9488363086)) -Oct 12 12:32:38.719  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657783.5260765646)) -Oct 12 12:32:38.719  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657785.1047388206)) -Oct 12 12:32:38.719  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657786.6831981806)) -Oct 12 12:32:38.719  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657788.2627197807)) -Oct 12 12:32:38.719  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657789.8430810446)) -Oct 12 12:32:38.719  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657791.4261325647)) -Oct 12 12:32:38.719  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657793.0093378767)) -Oct 12 12:32:38.719  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657794.5939802127)) -Oct 12 12:32:38.719  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657796.1802917487)) -Oct 12 12:32:38.719  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657797.7685264047)) -Oct 12 12:32:38.719  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657799.3562190927)) -Oct 12 12:32:38.719  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657800.9434188207)) -Oct 12 12:32:38.719  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657802.5308879247)) -Oct 12 12:32:38.719  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657804.1180285168)) -Oct 12 12:32:38.719  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657805.7050450288)) -Oct 12 12:32:38.719  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657807.2904491249)) -Oct 12 12:32:38.719  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657808.8740849008)) -Oct 12 12:32:38.719  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657810.4575354928)) -Oct 12 12:32:38.719  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657812.0398622608)) -Oct 12 12:32:38.719  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657813.6219509488)) -Oct 12 12:32:38.719  WARN veloren_client: Ignoring what the server send till registered: Pong -Oct 12 12:32:38.719  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657815.2035352049)) -Oct 12 12:32:38.719  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657816.7865938288)) -Oct 12 12:32:38.719  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657818.3683290929)) -Oct 12 12:32:38.719  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657819.9514061009)) -Oct 12 12:32:38.719  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657821.5364918129)) -Oct 12 12:32:38.719  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657823.1191970129)) -Oct 12 12:32:38.719  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657824.7010674449)) -Oct 12 12:32:38.719  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657826.2854745329)) -Oct 12 12:32:38.719  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657827.8700038769)) -Oct 12 12:32:38.719  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657829.4558921969)) -Oct 12 12:32:38.719  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657831.0402209968)) -Oct 12 12:32:38.719  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657832.6242198448)) -Oct 12 12:32:38.719  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657834.2080258768)) -Oct 12 12:32:38.719  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657835.7939041648)) -Oct 12 12:32:38.719  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657837.3779756369)) -Oct 12 12:32:38.719  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657838.9616118929)) -Oct 12 12:32:38.719  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657840.545986821)) -Oct 12 12:32:38.719  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657842.1291984209)) -Oct 12 12:32:38.919  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657843.7131280049)) -Oct 12 12:32:38.919  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657845.2975539089)) -Oct 12 12:32:38.919  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657846.8822659889)) -Oct 12 12:32:38.919  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657848.4671737648)) -Oct 12 12:32:38.919  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657850.0504079729)) -Oct 12 12:32:38.919  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657851.6344525649)) -Oct 12 12:32:38.919  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657853.2191241329)) -Oct 12 12:32:39.123  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657854.8038449009)) -Oct 12 12:32:39.123  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657856.386465477)) -Oct 12 12:32:39.123  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657857.9690923409)) -Oct 12 12:32:39.123  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657859.5529738289)) -Oct 12 12:32:39.123  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657861.1366904369)) -Oct 12 12:32:39.123  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(657862.7212346129)) -Oct 12 12:34:32.941  WARN veloren_voxygen::ui: Could not recache queued glyphs, skipping frame. -Oct 12 12:35:26.888  INFO veloren_voxygen::logging: Setup terminal and file logging. logdir="/home/james/Documents/Projects/rust/veloren/userdata/voxygen/logs" -Oct 12 12:35:27.076  INFO veloren_common::assets: Assets found path=/home/james/Documents/Projects/rust/veloren/assets -Oct 12 12:35:27.103  INFO winit::platform_impl::platform::x11::window: Guessed window scale factor: 1 -Oct 12 12:35:27.181  INFO veloren_voxygen::window: selected graphics device vendor="NVIDIA Corporation" renderer="GeForce 940MX/PCIe/SSE2" opengl_version=3.3.0, NVIDIA 450.66 glsl_version=3.30, NVIDIA via Cg compiler -Oct 12 12:36:09.402  INFO scheduler{p=a92Gg5}: veloren_network::scheduler: Connecting Tcp to: 45.136.30.39:14004 -Oct 12 12:36:10.260  INFO scheduler{p=a92Gg5}::handshake{cid=0}: veloren_network::channel: This Handshake is now configured! pid=1BNABt -Oct 12 12:36:12.970  WARN veloren_client: Server is running b920439a[2020-10-11], you are running d4c97628[2020-10-12], versions might be incompatible! -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668017.8865566945)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668024.6020041825)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668025.8223141346)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668026.7372351266)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668027.4015568065)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668027.9035073025)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668028.3718107585)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668028.8761426305)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668029.5329824064)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668030.4424514144)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668031.6679200224)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668033.2169719904)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668035.0545471105)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668037.1173884865)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668039.3189708865)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668041.5835229026)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668043.8302318786)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668046.0223668705)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668048.1058260705)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668050.0493997345)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668051.8326518144)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668053.4647007264)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668054.9536102784)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668056.3201565985)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668057.5853743425)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668058.7915638945)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668059.9789414785)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668061.1850277345)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668062.4425914465)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668063.7810071744)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668065.2192837824)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668066.7606956384)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668068.3981436864)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668070.1174969664)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668071.8964488223)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668073.7078929823)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668075.5278804223)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668077.3327505983)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668079.1034169343)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668080.8289830943)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668082.5008143584)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668084.1155690623)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668085.6762392384)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668087.1907122943)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668088.6688409023)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668090.1230513023)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668091.5672208703)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668093.0169525823)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668094.4851890623)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668095.9804216063)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668097.5083046623)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668099.0710720543)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668100.6683126623)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668102.2939949502)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668103.9413174143)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668105.6019580542)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668107.2672500382)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668108.9288298462)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668110.5801101022)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668112.2165521662)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668113.8338464542)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668115.4319651262)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668117.0110861182)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668118.5730076062)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668120.1222260382)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668121.6626794783)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668123.1992380543)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668124.7367757823)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668126.2800939583)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668127.8321790462)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668129.3956380222)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668130.9710609022)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668132.5580552862)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668134.1555608541)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668135.7781451261)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668137.38389335)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668138.990691382)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668140.5975937659)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668142.2013500859)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668143.7998063419)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668145.3924302618)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668146.9789265018)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668148.5595594938)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668150.1362000378)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668151.7088095897)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668153.2794335257)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668154.8497131577)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668156.4211993178)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668157.9939522458)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668159.5687793498)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668161.1467909658)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668162.7289542458)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668164.3140255098)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668165.9026227577)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668167.4928724057)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668169.0848331577)) -Oct 12 12:36:15.356  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668170.6770477818)) -Oct 12 12:36:15.357  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668172.2683625978)) -Oct 12 12:36:15.357  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668173.8588223897)) -Oct 12 12:36:15.357  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668175.4482520537)) -Oct 12 12:36:15.357  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668177.0360717498)) -Oct 12 12:36:15.357  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668178.6211526138)) -Oct 12 12:36:15.357  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668180.2044065498)) -Oct 12 12:36:15.357  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668181.7861687418)) -Oct 12 12:36:15.357  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668183.3688725018)) -Oct 12 12:36:15.357  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668184.9496060058)) -Oct 12 12:36:15.357  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668186.5290285818)) -Oct 12 12:36:15.357  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668188.1084511578)) -Oct 12 12:36:15.357  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668189.6879443898)) -Oct 12 12:36:15.357  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668191.2686649818)) -Oct 12 12:36:15.357  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668192.8501765658)) -Oct 12 12:36:15.357  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668194.4341980218)) -Oct 12 12:36:15.357  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668196.0173510137)) -Oct 12 12:36:15.357  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668197.6014152378)) -Oct 12 12:36:15.357  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668199.1865764537)) -Oct 12 12:36:15.357  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668200.7738469337)) -Oct 12 12:36:15.357  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668202.3606921817)) -Oct 12 12:36:15.357  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668203.9462270777)) -Oct 12 12:36:15.357  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668205.5312464058)) -Oct 12 12:36:15.357  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668207.1163249178)) -Oct 12 12:36:15.357  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668208.7005060698)) -Oct 12 12:36:15.359  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668210.2852166619)) -Oct 12 12:36:15.359  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668211.8704990299)) -Oct 12 12:36:15.359  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668213.4535659578)) -Oct 12 12:36:15.359  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668215.0372517499)) -Oct 12 12:36:15.359  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668216.6211972219)) -Oct 12 12:36:15.359  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668218.2043842939)) -Oct 12 12:36:15.359  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668219.7865523258)) -Oct 12 12:36:15.359  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668221.3710123579)) -Oct 12 12:36:15.359  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668222.9563548699)) -Oct 12 12:36:15.359  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668224.5384786939)) -Oct 12 12:36:15.359  WARN veloren_client: Ignoring what the server send till registered: Pong -Oct 12 12:36:15.359  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668226.1203495099)) -Oct 12 12:36:15.359  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668227.7039987259)) -Oct 12 12:36:15.359  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668229.2876383899)) -Oct 12 12:36:15.359  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668230.8714343419)) -Oct 12 12:36:15.359  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668232.4546473819)) -Oct 12 12:36:15.359  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668234.0385860859)) -Oct 12 12:36:15.359  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668235.6229211258)) -Oct 12 12:36:15.359  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668237.2075850138)) -Oct 12 12:36:15.359  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668238.7923143258)) -Oct 12 12:36:15.359  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668240.3770432058)) -Oct 12 12:36:15.359  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668241.9617908058)) -Oct 12 12:36:15.359  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668243.5457199578)) -Oct 12 12:36:15.512  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668245.1295562778)) -Oct 12 12:36:15.513  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668246.7135243578)) -Oct 12 12:36:15.513  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668248.2982002938)) -Oct 12 12:36:15.513  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668249.8829926298)) -Oct 12 12:36:15.513  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668251.4673680858)) -Oct 12 12:36:15.684  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668253.0516815258)) -Oct 12 12:36:15.684  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668254.6354033658)) -Oct 12 12:36:15.684  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668256.2192684858)) -Oct 12 12:36:15.684  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668257.8027205177)) -Oct 12 12:36:15.684  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668259.3862812697)) -Oct 12 12:36:15.854  WARN veloren_client: Ignoring what the server send till registered: TimeOfDay(TimeOfDay(668260.9746279577)) -Oct 12 12:37:02.882  INFO scheduler{p=RTuK4S}::participant{pid=1BNABt}:{cid=0}: veloren_network::protocols: Closing tcp protocol due to read error e=Os { code: 104, kind: ConnectionReset, message: "Connection reset by peer" } -Oct 12 12:37:02.882  INFO scheduler{p=RTuK4S}::participant{pid=1BNABt}: veloren_network::participant: Channel got closed cid=0 -Oct 12 12:37:02.882 ERROR veloren_voxygen::session: [session] Failed to tick the scene: ClientError(StreamErr(StreamClosed)) -Oct 12 12:37:02.883  WARN veloren_client: Error during drop of client, couldn't send disconnect package, is the connection already closed? e=StreamClosed -Oct 12 12:37:02.884  INFO scheduler{p=a92Gg5}::participant{pid=1BNABt}:{cid=0}: veloren_network::protocols: Closing tcp protocol due to read error e=Os { code: 104, kind: ConnectionReset, message: "Connection reset by peer" } -Oct 12 12:37:02.884  INFO scheduler{p=a92Gg5}::participant{pid=1BNABt}: veloren_network::participant: Channel got closed cid=0 -Oct 12 12:37:02.888 ERROR veloren_voxygen::session: [session] Failed to tick the scene: ClientError(StreamErr(StreamClosed)) -Oct 12 12:37:02.889  WARN veloren_client: Error during drop of client, couldn't send disconnect package, is the connection already closed? e=StreamClosed -Oct 12 12:37:02.894 ERROR scheduler{p=RTuK4S}::participant{pid=1BNABt}: veloren_network::participant: Participant has no channel to communicate on occurrences=1 lastframe=Shutdown -Oct 12 12:37:02.894  WARN scheduler{p=RTuK4S}::participant{pid=1BNABt}: veloren_network::participant: couldn't send shutdown frame, are channels already closed? -Oct 12 12:37:02.899 ERROR scheduler{p=a92Gg5}::participant{pid=1BNABt}: veloren_network::participant: Participant has no channel to communicate on occurrences=1 lastframe=Shutdown -Oct 12 12:37:02.899  WARN scheduler{p=a92Gg5}::participant{pid=1BNABt}: veloren_network::participant: couldn't send shutdown frame, are channels already closed? -Oct 12 12:38:34.381  INFO veloren_voxygen::logging: Setup terminal and file logging. logdir="/home/james/Documents/Projects/rust/veloren/userdata/voxygen/logs" -Oct 12 12:38:34.561  INFO veloren_common::assets: Assets found path=/home/james/Documents/Projects/rust/veloren/assets -Oct 12 12:38:34.580  INFO winit::platform_impl::platform::x11::window: Guessed window scale factor: 1 -Oct 12 12:38:34.629  INFO veloren_voxygen::window: selected graphics device vendor="NVIDIA Corporation" renderer="GeForce 940MX/PCIe/SSE2" opengl_version=3.3.0, NVIDIA 450.66 glsl_version=3.30, NVIDIA via Cg compiler -Oct 12 12:39:22.651  INFO veloren_voxygen::logging: Setup terminal and file logging. logdir="/home/james/Documents/Projects/rust/veloren/userdata/voxygen/logs" -Oct 12 12:39:22.823  INFO veloren_common::assets: Assets found path=/home/james/Documents/Projects/rust/veloren/assets -Oct 12 12:39:22.842  INFO winit::platform_impl::platform::x11::window: Guessed window scale factor: 1 -Oct 12 12:39:22.892  INFO veloren_voxygen::window: selected graphics device vendor="NVIDIA Corporation" renderer="GeForce 940MX/PCIe/SSE2" opengl_version=3.3.0, NVIDIA 450.66 glsl_version=3.30, NVIDIA via Cg compiler -Oct 12 12:46:13.416  INFO veloren_voxygen::logging: Setup terminal and file logging. logdir="/home/james/Documents/Projects/rust/veloren/userdata/voxygen/logs" -Oct 12 12:46:13.729  INFO veloren_common::assets: Assets found path=/home/james/Documents/Projects/rust/veloren/assets -Oct 12 12:46:13.747  INFO winit::platform_impl::platform::x11::window: Guessed window scale factor: 1 -Oct 12 12:46:13.794  INFO veloren_voxygen::window: selected graphics device vendor="NVIDIA Corporation" renderer="GeForce 940MX/PCIe/SSE2" opengl_version=3.3.0, NVIDIA 450.66 glsl_version=3.30, NVIDIA via Cg compiler diff --git a/userdata/voxygen/profile.ron b/userdata/voxygen/profile.ron deleted file mode 100644 index 3b597fc037..0000000000 --- a/userdata/voxygen/profile.ron +++ /dev/null @@ -1,18 +0,0 @@ -( - servers: { - "Singleplayer": ( - characters: { - 2: ( - hotbar_slots: (None, None, None, None, None, Some(Inventory(0)), Some(Inventory(1)), None, None, None), - ), - }, - ), - "Veloren Alpha": ( - characters: { - 24: ( - hotbar_slots: (None, None, None, None, None, Some(Inventory(0)), Some(Inventory(1)), None, None, None), - ), - }, - ), - }, -) \ No newline at end of file