diff options
| author | metamuffin <metamuffin@disroot.org> | 2026-03-10 23:38:19 +0100 |
|---|---|---|
| committer | metamuffin <metamuffin@disroot.org> | 2026-03-10 23:38:22 +0100 |
| commit | c49f0a8afd405e5fe8f0ed79c034f9a9b80674cf (patch) | |
| tree | 0e143d70c658858f2294da4cf7666618c75e46de /server/src/server.rs | |
| parent | 59c25d65ce9b61e6eb964adf0934127df9848e9d (diff) | |
| download | hurrycurry-c49f0a8afd405e5fe8f0ed79c034f9a9b80674cf.tar hurrycurry-c49f0a8afd405e5fe8f0ed79c034f9a9b80674cf.tar.bz2 hurrycurry-c49f0a8afd405e5fe8f0ed79c034f9a9b80674cf.tar.zst | |
remove editor redirect feature
Diffstat (limited to 'server/src/server.rs')
| -rw-r--r-- | server/src/server.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/server/src/server.rs b/server/src/server.rs index 69ef89fe..27ad86a7 100644 --- a/server/src/server.rs +++ b/server/src/server.rs @@ -82,7 +82,6 @@ pub struct Server { pub player_inactivity_timers: HashMap<PlayerID, f32>, pub packet_out: VecDeque<PacketC>, pub scoreboard: ScoreboardStore, - pub editor_address: Option<String>, } impl Server { @@ -113,7 +112,6 @@ impl Server { last_movement_update: HashMap::default(), player_inactivity_timers: HashMap::new(), scoreboard: ScoreboardStore::load().context("Failed to load scoreboards")?, - editor_address: None, paused: false, }) } |