fix: put CompletionTime of initial clan hall in the past
All checks were successful
Build / build (pull_request) Successful in 3m19s

For old versions, TimeRemaining of 0 would cause this to show in yellow, we need it to be negative.
This commit is contained in:
Sainan 2025-10-05 20:21:12 +02:00
parent 1ecf53c96b
commit 156f82411a

View File

@ -19,7 +19,7 @@ export const getGuildDojoController: RequestHandler = async (req, res) => {
_id: new Types.ObjectId(),
pf: "/Lotus/Levels/ClanDojo/DojoHall.level",
ppf: "",
CompletionTime: new Date(Date.now()),
CompletionTime: new Date(Date.now() - 1000),
DecoCapacity: 600
});
await guild.save();