summaryrefslogtreecommitdiff
path: root/server
diff options
context:
space:
mode:
Diffstat (limited to 'server')
-rw-r--r--server/bot/src/algos/customer.rs2
-rw-r--r--server/bot/src/algos/dishwasher.rs3
-rw-r--r--server/bot/src/algos/frank.rs2
-rw-r--r--server/bot/src/algos/mod.rs2
-rw-r--r--server/bot/src/algos/simple.rs2
-rw-r--r--server/bot/src/algos/test.rs2
-rw-r--r--server/bot/src/algos/waiter.rs2
-rw-r--r--server/bot/src/lib.rs2
-rw-r--r--server/bot/src/main.rs2
-rw-r--r--server/bot/src/pathfinding.rs2
-rw-r--r--server/client-lib/src/lib.rs2
-rw-r--r--server/client-lib/src/network/mod.rs2
-rw-r--r--server/client-lib/src/network/sync.rs2
-rw-r--r--server/client-lib/src/network/tokio.rs2
-rw-r--r--server/client-lib/src/spatial_index.rs2
-rw-r--r--server/discover/src/main.rs2
-rw-r--r--server/makefile2
-rw-r--r--server/protocol/src/lib.rs2
-rw-r--r--server/protocol/src/movement.rs2
-rw-r--r--server/registry/src/conn_test.rs2
-rw-r--r--server/registry/src/list.rs2
-rw-r--r--server/registry/src/main.rs2
-rw-r--r--server/registry/src/register.rs2
-rw-r--r--server/replaytool/src/main.rs2
-rw-r--r--server/src/bin/graph.rs2
-rw-r--r--server/src/bin/graph_summary.rs2
-rw-r--r--server/src/commands.rs2
-rw-r--r--server/src/data/demands.rs2
-rw-r--r--server/src/data/index.rs2
-rw-r--r--server/src/data/mod.rs3
-rw-r--r--server/src/entity/book.rs2
-rw-r--r--server/src/entity/bot.rs2
-rw-r--r--server/src/entity/campaign.rs2
-rw-r--r--server/src/entity/conveyor.rs2
-rw-r--r--server/src/entity/customers.rs2
-rw-r--r--server/src/entity/environment_effect.rs2
-rw-r--r--server/src/entity/item_portal.rs2
-rw-r--r--server/src/entity/mod.rs2
-rw-r--r--server/src/entity/pedestrians.rs2
-rw-r--r--server/src/entity/player_portal.rs2
-rw-r--r--server/src/entity/tram.rs2
-rw-r--r--server/src/entity/tutorial.rs2
-rw-r--r--server/src/interaction.rs2
-rw-r--r--server/src/lib.rs2
-rw-r--r--server/src/main.rs2
-rw-r--r--server/src/message.rs2
-rw-r--r--server/src/network/mdns.rs2
-rw-r--r--server/src/network/mod.rs2
-rw-r--r--server/src/network/register.rs2
-rw-r--r--server/src/network/upnp.rs2
-rw-r--r--server/src/scoreboard.rs2
-rw-r--r--server/src/server.rs2
-rw-r--r--server/src/state.rs2
53 files changed, 53 insertions, 55 deletions
diff --git a/server/bot/src/algos/customer.rs b/server/bot/src/algos/customer.rs
index 9e7ae094..043e5358 100644
--- a/server/bot/src/algos/customer.rs
+++ b/server/bot/src/algos/customer.rs
@@ -1,6 +1,6 @@
/*
Hurry Curry! - a game about cooking
- Copyright 2024 metamuffin
+ Copyright (C) 2025 Hurry Curry! Contributors
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/server/bot/src/algos/dishwasher.rs b/server/bot/src/algos/dishwasher.rs
index 2bd1c9b2..9328d4f2 100644
--- a/server/bot/src/algos/dishwasher.rs
+++ b/server/bot/src/algos/dishwasher.rs
@@ -1,7 +1,6 @@
/*
Hurry Curry! - a game about cooking
- Copyright 2024 Miner34
- Copyright 2024 metamuffin
+ Copyright (C) 2025 Hurry Curry! Contributors
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/server/bot/src/algos/frank.rs b/server/bot/src/algos/frank.rs
index 38ee927c..c8127198 100644
--- a/server/bot/src/algos/frank.rs
+++ b/server/bot/src/algos/frank.rs
@@ -1,6 +1,6 @@
/*
Hurry Curry! - a game about cooking
- Copyright 2024 metamuffin
+ Copyright (C) 2025 Hurry Curry! Contributors
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/server/bot/src/algos/mod.rs b/server/bot/src/algos/mod.rs
index 059b9e89..ad6b1586 100644
--- a/server/bot/src/algos/mod.rs
+++ b/server/bot/src/algos/mod.rs
@@ -1,6 +1,6 @@
/*
Hurry Curry! - a game about cooking
- Copyright 2024 metamuffin
+ Copyright (C) 2025 Hurry Curry! Contributors
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/server/bot/src/algos/simple.rs b/server/bot/src/algos/simple.rs
index 452f59d3..e7d6d199 100644
--- a/server/bot/src/algos/simple.rs
+++ b/server/bot/src/algos/simple.rs
@@ -1,6 +1,6 @@
/*
Hurry Curry! - a game about cooking
- Copyright 2024 metamuffin
+ Copyright (C) 2025 Hurry Curry! Contributors
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/server/bot/src/algos/test.rs b/server/bot/src/algos/test.rs
index 7cfafc29..5ef11553 100644
--- a/server/bot/src/algos/test.rs
+++ b/server/bot/src/algos/test.rs
@@ -1,6 +1,6 @@
/*
Hurry Curry! - a game about cooking
- Copyright 2024 metamuffin
+ Copyright (C) 2025 Hurry Curry! Contributors
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/server/bot/src/algos/waiter.rs b/server/bot/src/algos/waiter.rs
index f3980170..58a3f292 100644
--- a/server/bot/src/algos/waiter.rs
+++ b/server/bot/src/algos/waiter.rs
@@ -1,6 +1,6 @@
/*
Hurry Curry! - a game about cooking
- Copyright 2024 metamuffin
+ Copyright (C) 2025 Hurry Curry! Contributors
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/server/bot/src/lib.rs b/server/bot/src/lib.rs
index 97b3e3e2..cc1cb2a8 100644
--- a/server/bot/src/lib.rs
+++ b/server/bot/src/lib.rs
@@ -1,6 +1,6 @@
/*
Hurry Curry! - a game about cooking
- Copyright 2024 metamuffin
+ Copyright (C) 2025 Hurry Curry! Contributors
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/server/bot/src/main.rs b/server/bot/src/main.rs
index 6c51b1f0..4fbb4ba4 100644
--- a/server/bot/src/main.rs
+++ b/server/bot/src/main.rs
@@ -1,6 +1,6 @@
/*
Hurry Curry! - a game about cooking
- Copyright 2024 metamuffin
+ Copyright (C) 2025 Hurry Curry! Contributors
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/server/bot/src/pathfinding.rs b/server/bot/src/pathfinding.rs
index 96d6b37a..211f1890 100644
--- a/server/bot/src/pathfinding.rs
+++ b/server/bot/src/pathfinding.rs
@@ -1,6 +1,6 @@
/*
Hurry Curry! - a game about cooking
- Copyright 2024 metamuffin
+ Copyright (C) 2025 Hurry Curry! Contributors
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/server/client-lib/src/lib.rs b/server/client-lib/src/lib.rs
index 4487596c..23394cc4 100644
--- a/server/client-lib/src/lib.rs
+++ b/server/client-lib/src/lib.rs
@@ -1,6 +1,6 @@
/*
Hurry Curry! - a game about cooking
- Copyright 2024 metamuffin
+ Copyright (C) 2025 Hurry Curry! Contributors
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/server/client-lib/src/network/mod.rs b/server/client-lib/src/network/mod.rs
index 9423f645..45963567 100644
--- a/server/client-lib/src/network/mod.rs
+++ b/server/client-lib/src/network/mod.rs
@@ -1,6 +1,6 @@
/*
Hurry Curry! - a game about cooking
- Copyright 2024 metamuffin
+ Copyright (C) 2025 Hurry Curry! Contributors
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/server/client-lib/src/network/sync.rs b/server/client-lib/src/network/sync.rs
index 6199bd9d..eaee72c4 100644
--- a/server/client-lib/src/network/sync.rs
+++ b/server/client-lib/src/network/sync.rs
@@ -1,6 +1,6 @@
/*
Hurry Curry! - a game about cooking
- Copyright 2024 metamuffin
+ Copyright (C) 2025 Hurry Curry! Contributors
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/server/client-lib/src/network/tokio.rs b/server/client-lib/src/network/tokio.rs
index f9f34172..9fce3909 100644
--- a/server/client-lib/src/network/tokio.rs
+++ b/server/client-lib/src/network/tokio.rs
@@ -1,6 +1,6 @@
/*
Hurry Curry! - a game about cooking
- Copyright 2024 metamuffin
+ Copyright (C) 2025 Hurry Curry! Contributors
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/server/client-lib/src/spatial_index.rs b/server/client-lib/src/spatial_index.rs
index de8543f1..faa1c7f4 100644
--- a/server/client-lib/src/spatial_index.rs
+++ b/server/client-lib/src/spatial_index.rs
@@ -1,6 +1,6 @@
/*
Hurry Curry! - a game about cooking
- Copyright 2024 metamuffin
+ Copyright (C) 2025 Hurry Curry! Contributors
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/server/discover/src/main.rs b/server/discover/src/main.rs
index 0ed43927..0e4fb2a0 100644
--- a/server/discover/src/main.rs
+++ b/server/discover/src/main.rs
@@ -1,6 +1,6 @@
/*
Hurry Curry! - a game about cooking
- Copyright 2024 metamuffin
+ Copyright (C) 2025 Hurry Curry! Contributors
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/server/makefile b/server/makefile
index 7162a982..bff817db 100644
--- a/server/makefile
+++ b/server/makefile
@@ -1,5 +1,5 @@
# Hurry Curry! - a game about cooking
-# Copyright 2024 metamuffin
+# Copyright (C) 2025 Hurry Curry! contributors
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
diff --git a/server/protocol/src/lib.rs b/server/protocol/src/lib.rs
index 90c565ba..082a9f10 100644
--- a/server/protocol/src/lib.rs
+++ b/server/protocol/src/lib.rs
@@ -1,6 +1,6 @@
/*
Hurry Curry! - a game about cooking
- Copyright 2024 metamuffin
+ Copyright (C) 2025 Hurry Curry! Contributors
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/server/protocol/src/movement.rs b/server/protocol/src/movement.rs
index a02ee8ee..6945aa5d 100644
--- a/server/protocol/src/movement.rs
+++ b/server/protocol/src/movement.rs
@@ -1,6 +1,6 @@
/*
Hurry Curry! - a game about cooking
- Copyright 2024 metamuffin
+ Copyright (C) 2025 Hurry Curry! Contributors
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/server/registry/src/conn_test.rs b/server/registry/src/conn_test.rs
index 45eaf232..553d1fff 100644
--- a/server/registry/src/conn_test.rs
+++ b/server/registry/src/conn_test.rs
@@ -1,6 +1,6 @@
/*
Hurry Curry! - a game about cooking
- Copyright 2024 metamuffin
+ Copyright (C) 2025 Hurry Curry! Contributors
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/server/registry/src/list.rs b/server/registry/src/list.rs
index 5684b473..06bafe3a 100644
--- a/server/registry/src/list.rs
+++ b/server/registry/src/list.rs
@@ -1,6 +1,6 @@
/*
Hurry Curry! - a game about cooking
- Copyright 2024 metamuffin
+ Copyright (C) 2025 Hurry Curry! Contributors
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/server/registry/src/main.rs b/server/registry/src/main.rs
index 85c0f066..b9cfbfe0 100644
--- a/server/registry/src/main.rs
+++ b/server/registry/src/main.rs
@@ -1,6 +1,6 @@
/*
Hurry Curry! - a game about cooking
- Copyright 2024 metamuffin
+ Copyright (C) 2025 Hurry Curry! Contributors
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/server/registry/src/register.rs b/server/registry/src/register.rs
index d15fb01c..893b2a1d 100644
--- a/server/registry/src/register.rs
+++ b/server/registry/src/register.rs
@@ -1,6 +1,6 @@
/*
Hurry Curry! - a game about cooking
- Copyright 2024 metamuffin
+ Copyright (C) 2025 Hurry Curry! Contributors
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/server/replaytool/src/main.rs b/server/replaytool/src/main.rs
index a4b966f7..8d42554c 100644
--- a/server/replaytool/src/main.rs
+++ b/server/replaytool/src/main.rs
@@ -1,6 +1,6 @@
/*
Hurry Curry! - a game about cooking
- Copyright 2024 metamuffin
+ Copyright (C) 2025 Hurry Curry! Contributors
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/server/src/bin/graph.rs b/server/src/bin/graph.rs
index c6f1ee11..000be9e7 100644
--- a/server/src/bin/graph.rs
+++ b/server/src/bin/graph.rs
@@ -1,6 +1,6 @@
/*
Hurry Curry! - a game about cooking
- Copyright 2024 metamuffin
+ Copyright (C) 2025 Hurry Curry! Contributors
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/server/src/bin/graph_summary.rs b/server/src/bin/graph_summary.rs
index 374d9521..d22361c0 100644
--- a/server/src/bin/graph_summary.rs
+++ b/server/src/bin/graph_summary.rs
@@ -1,6 +1,6 @@
/*
Hurry Curry! - a game about cooking
- Copyright 2024 metamuffin
+ Copyright (C) 2025 Hurry Curry! Contributors
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/server/src/commands.rs b/server/src/commands.rs
index bf392708..02562c87 100644
--- a/server/src/commands.rs
+++ b/server/src/commands.rs
@@ -1,6 +1,6 @@
/*
Hurry Curry! - a game about cooking
- Copyright 2024 metamuffin
+ Copyright (C) 2025 Hurry Curry! Contributors
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/server/src/data/demands.rs b/server/src/data/demands.rs
index ecfad402..77e187af 100644
--- a/server/src/data/demands.rs
+++ b/server/src/data/demands.rs
@@ -1,6 +1,6 @@
/*
Hurry Curry! - a game about cooking
- Copyright 2024 metamuffin
+ Copyright (C) 2025 Hurry Curry! Contributors
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/server/src/data/index.rs b/server/src/data/index.rs
index 650a70d6..a9ffbb81 100644
--- a/server/src/data/index.rs
+++ b/server/src/data/index.rs
@@ -1,6 +1,6 @@
/*
Hurry Curry! - a game about cooking
- Copyright 2024 metamuffin
+ Copyright (C) 2025 Hurry Curry! Contributors
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/server/src/data/mod.rs b/server/src/data/mod.rs
index 4b74fe28..b56ea1a1 100644
--- a/server/src/data/mod.rs
+++ b/server/src/data/mod.rs
@@ -1,7 +1,6 @@
/*
Hurry Curry! - a game about cooking
- Copyright 2024 metamuffin
- Copyright 2024 nokoe
+ Copyright (C) 2025 Hurry Curry! Contributors
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/server/src/entity/book.rs b/server/src/entity/book.rs
index 8b152bb9..54dc4d2c 100644
--- a/server/src/entity/book.rs
+++ b/server/src/entity/book.rs
@@ -1,6 +1,6 @@
/*
Hurry Curry! - a game about cooking
- Copyright 2024 metamuffin
+ Copyright (C) 2025 Hurry Curry! Contributors
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/server/src/entity/bot.rs b/server/src/entity/bot.rs
index 8d3994cb..8757cc97 100644
--- a/server/src/entity/bot.rs
+++ b/server/src/entity/bot.rs
@@ -1,6 +1,6 @@
/*
Hurry Curry! - a game about cooking
- Copyright 2024 metamuffin
+ Copyright (C) 2025 Hurry Curry! Contributors
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/server/src/entity/campaign.rs b/server/src/entity/campaign.rs
index 7f07be48..03136869 100644
--- a/server/src/entity/campaign.rs
+++ b/server/src/entity/campaign.rs
@@ -1,6 +1,6 @@
/*
Hurry Curry! - a game about cooking
- Copyright 2024 metamuffin
+ Copyright (C) 2025 Hurry Curry! Contributors
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/server/src/entity/conveyor.rs b/server/src/entity/conveyor.rs
index 4c50365d..9c7f5e4d 100644
--- a/server/src/entity/conveyor.rs
+++ b/server/src/entity/conveyor.rs
@@ -1,6 +1,6 @@
/*
Hurry Curry! - a game about cooking
- Copyright 2024 metamuffin
+ Copyright (C) 2025 Hurry Curry! Contributors
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/server/src/entity/customers.rs b/server/src/entity/customers.rs
index 05246a54..eab13ab2 100644
--- a/server/src/entity/customers.rs
+++ b/server/src/entity/customers.rs
@@ -1,6 +1,6 @@
/*
Hurry Curry! - a game about cooking
- Copyright 2024 metamuffin
+ Copyright (C) 2025 Hurry Curry! Contributors
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/server/src/entity/environment_effect.rs b/server/src/entity/environment_effect.rs
index 4976d9a3..0a7087c0 100644
--- a/server/src/entity/environment_effect.rs
+++ b/server/src/entity/environment_effect.rs
@@ -1,6 +1,6 @@
/*
Hurry Curry! - a game about cooking
- Copyright 2024 metamuffin
+ Copyright (C) 2025 Hurry Curry! Contributors
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/server/src/entity/item_portal.rs b/server/src/entity/item_portal.rs
index ef73e6ec..6035331b 100644
--- a/server/src/entity/item_portal.rs
+++ b/server/src/entity/item_portal.rs
@@ -1,6 +1,6 @@
/*
Hurry Curry! - a game about cooking
- Copyright 2024 metamuffin
+ Copyright (C) 2025 Hurry Curry! Contributors
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/server/src/entity/mod.rs b/server/src/entity/mod.rs
index 6d69436d..c5a24e55 100644
--- a/server/src/entity/mod.rs
+++ b/server/src/entity/mod.rs
@@ -1,6 +1,6 @@
/*
Hurry Curry! - a game about cooking
- Copyright 2025 metamuffin
+ Copyright (C) 2025 Hurry Curry! Contributors
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/server/src/entity/pedestrians.rs b/server/src/entity/pedestrians.rs
index 2ddbb920..fa3276d2 100644
--- a/server/src/entity/pedestrians.rs
+++ b/server/src/entity/pedestrians.rs
@@ -1,6 +1,6 @@
/*
Hurry Curry! - a game about cooking
- Copyright 2025 metamuffin
+ Copyright (C) 2025 Hurry Curry! Contributors
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/server/src/entity/player_portal.rs b/server/src/entity/player_portal.rs
index 96168faa..f70a2f95 100644
--- a/server/src/entity/player_portal.rs
+++ b/server/src/entity/player_portal.rs
@@ -1,6 +1,6 @@
/*
Hurry Curry! - a game about cooking
- Copyright 2024 metamuffin
+ Copyright (C) 2025 Hurry Curry! Contributors
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/server/src/entity/tram.rs b/server/src/entity/tram.rs
index 06e151d7..3186b650 100644
--- a/server/src/entity/tram.rs
+++ b/server/src/entity/tram.rs
@@ -1,6 +1,6 @@
/*
Hurry Curry! - a game about cooking
- Copyright 2025 metamuffin
+ Copyright (C) 2025 Hurry Curry! Contributors
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/server/src/entity/tutorial.rs b/server/src/entity/tutorial.rs
index 33c0e507..d0a45077 100644
--- a/server/src/entity/tutorial.rs
+++ b/server/src/entity/tutorial.rs
@@ -1,6 +1,6 @@
/*
Hurry Curry! - a game about cooking
- Copyright 2024 metamuffin
+ Copyright (C) 2025 Hurry Curry! Contributors
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/server/src/interaction.rs b/server/src/interaction.rs
index ce9cb075..be291f67 100644
--- a/server/src/interaction.rs
+++ b/server/src/interaction.rs
@@ -1,6 +1,6 @@
/*
Hurry Curry! - a game about cooking
- Copyright 2024 metamuffin
+ Copyright (C) 2025 Hurry Curry! Contributors
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/server/src/lib.rs b/server/src/lib.rs
index 372b0b62..085ae64a 100644
--- a/server/src/lib.rs
+++ b/server/src/lib.rs
@@ -1,6 +1,6 @@
/*
Hurry Curry! - a game about cooking
- Copyright 2024 metamuffin
+ Copyright (C) 2025 Hurry Curry! Contributors
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/server/src/main.rs b/server/src/main.rs
index c5f28ed8..e7251308 100644
--- a/server/src/main.rs
+++ b/server/src/main.rs
@@ -1,6 +1,6 @@
/*
Hurry Curry! - a game about cooking
- Copyright 2024 metamuffin
+ Copyright (C) 2025 Hurry Curry! Contributors
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/server/src/message.rs b/server/src/message.rs
index 5a15c472..31084ada 100644
--- a/server/src/message.rs
+++ b/server/src/message.rs
@@ -1,6 +1,6 @@
/*
Hurry Curry! - a game about cooking
- Copyright 2024 metamuffin
+ Copyright (C) 2025 Hurry Curry! Contributors
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/server/src/network/mdns.rs b/server/src/network/mdns.rs
index 5bd71c60..018de4b3 100644
--- a/server/src/network/mdns.rs
+++ b/server/src/network/mdns.rs
@@ -1,6 +1,6 @@
/*
Hurry Curry! - a game about cooking
- Copyright 2024 metamuffin
+ Copyright (C) 2025 Hurry Curry! Contributors
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/server/src/network/mod.rs b/server/src/network/mod.rs
index ce11082d..5eadc6b1 100644
--- a/server/src/network/mod.rs
+++ b/server/src/network/mod.rs
@@ -1,6 +1,6 @@
/*
Hurry Curry! - a game about cooking
- Copyright 2024 metamuffin
+ Copyright (C) 2025 Hurry Curry! Contributors
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/server/src/network/register.rs b/server/src/network/register.rs
index eccdf22b..7d924a76 100644
--- a/server/src/network/register.rs
+++ b/server/src/network/register.rs
@@ -1,6 +1,6 @@
/*
Hurry Curry! - a game about cooking
- Copyright 2024 metamuffin
+ Copyright (C) 2025 Hurry Curry! Contributors
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/server/src/network/upnp.rs b/server/src/network/upnp.rs
index a16e9684..8ad79588 100644
--- a/server/src/network/upnp.rs
+++ b/server/src/network/upnp.rs
@@ -1,6 +1,6 @@
/*
Hurry Curry! - a game about cooking
- Copyright 2024 metamuffin
+ Copyright (C) 2025 Hurry Curry! Contributors
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/server/src/scoreboard.rs b/server/src/scoreboard.rs
index 421a110e..60b9356c 100644
--- a/server/src/scoreboard.rs
+++ b/server/src/scoreboard.rs
@@ -1,6 +1,6 @@
/*
Hurry Curry! - a game about cooking
- Copyright 2024 metamuffin
+ Copyright (C) 2025 Hurry Curry! Contributors
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/server/src/server.rs b/server/src/server.rs
index 368a79a9..8d04cf57 100644
--- a/server/src/server.rs
+++ b/server/src/server.rs
@@ -1,6 +1,6 @@
/*
Hurry Curry! - a game about cooking
- Copyright 2024 metamuffin
+ Copyright (C) 2025 Hurry Curry! Contributors
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/server/src/state.rs b/server/src/state.rs
index bd97266e..f7bccf29 100644
--- a/server/src/state.rs
+++ b/server/src/state.rs
@@ -1,6 +1,6 @@
/*
Hurry Curry! - a game about cooking
- Copyright 2024 metamuffin
+ Copyright (C) 2025 Hurry Curry! Contributors
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by