feat: dojo research #689

Merged
Sainan merged 6 commits from guild-tech into main 2025-01-03 00:06:50 -08:00
Showing only changes of commit bf6c6a522a - Show all commits

View File

@ -17,7 +17,7 @@ export const getGuildForRequestEx = async (req: Request, inventory: IInventoryDa
}
const guild = await Guild.findOne({ _id: guildId });
if (!guild) {
throw new Error("Account thinks it is a in guild that doesn't exist");
throw new Error("Account thinks it is in a guild that doesn't exist");
}
return guild;
};