From 78581c840fc0197cc3f2805735d97851a73f32b4 Mon Sep 17 00:00:00 2001 From: hided62 Date: Thu, 30 Jul 2026 19:16:24 +0000 Subject: [PATCH] fix(engine): use physical auction enum name --- app/game-engine/src/auction/neutralRegistrar.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/game-engine/src/auction/neutralRegistrar.ts b/app/game-engine/src/auction/neutralRegistrar.ts index df6b3e7..599f06b 100644 --- a/app/game-engine/src/auction/neutralRegistrar.ts +++ b/app/game-engine/src/auction/neutralRegistrar.ts @@ -86,7 +86,7 @@ export const createNeutralAuctionRegistrar = async (options: { SELECT type, count(*) AS count FROM auction WHERE host_general_id = 0 - AND type IN ('BUY_RICE'::"AuctionType", 'SELL_RICE'::"AuctionType") + AND type IN ('BUY_RICE'::"auction_type", 'SELL_RICE'::"auction_type") GROUP BY type ` ));