correct syntax

This commit is contained in:
wishu
2022-03-24 13:48:22 +11:00
parent c20b051c91
commit be66e77e09

View File

@@ -416,7 +416,7 @@ func CreateGuild(s *Session, guildName string) (int32, error) {
guildResult, err := transaction.Query(
"INSERT INTO guilds (name, leader_id, rp, guild_hall) VALUES ($1, $2, $3, $4) RETURNING id",
guildName, s.charID, 48, 17
guildName, s.charID, 48, 17,
)
if err != nil {