forked from OpenWF/SpaceNinjaServer
fix: failure to create a new dojo
This commit is contained in:
parent
2ec110733f
commit
fba1808b07
@ -14,14 +14,12 @@ export const getGuildDojoController: RequestHandler = async (req, res) => {
|
|||||||
|
|
||||||
// Populate dojo info if not present
|
// Populate dojo info if not present
|
||||||
if (guild.DojoComponents.length == 0) {
|
if (guild.DojoComponents.length == 0) {
|
||||||
guild.DojoComponents.push([
|
guild.DojoComponents.push({
|
||||||
{
|
_id: new Types.ObjectId(),
|
||||||
_id: new Types.ObjectId(),
|
pf: "/Lotus/Levels/ClanDojo/DojoHall.level",
|
||||||
pf: "/Lotus/Levels/ClanDojo/DojoHall.level",
|
ppf: "",
|
||||||
ppf: "",
|
CompletionTime: new Date(Date.now())
|
||||||
CompletionTime: new Date(Date.now())
|
});
|
||||||
}
|
|
||||||
]);
|
|
||||||
await guild.save();
|
await guild.save();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user