jbilcke-hf HF staff commited on
Commit
9f14b6c
·
1 Parent(s): 25e7ef4
src/app/games/trulad.ts CHANGED
@@ -26,9 +26,9 @@ export const game: Game = {
26
  title: "The Trulad Show",
27
  type: "trulad",
28
  description: [
29
- "The Trulad Show is a reality TV show about a generic guy called Trulad (usually dressed in a yellow shirt) who lives his normal, daily life",
30
  "Trulad doesn't know he is filmed as the cameras are hidden.",
31
- "The player is Director, and can influence the life of Trulad",
32
  "The player can click around to move to new scenes, camera orientation, trigger events int he life of Trulad.",
33
  "They can also use objects from their inventory.",
34
  ],
 
26
  title: "The Trulad Show",
27
  type: "trulad",
28
  description: [
29
+ "The Trulad Show is a reality TV show about a generic guy called Trulad (usually dressed in a yellow shirt) who lives his normal, daily life.",
30
  "Trulad doesn't know he is filmed as the cameras are hidden.",
31
+ "The player is Director, and can influence the life of Trulad.",
32
  "The player can click around to move to new scenes, camera orientation, trigger events int he life of Trulad.",
33
  "They can also use objects from their inventory.",
34
  ],
src/app/queries/getBase.ts CHANGED
@@ -16,7 +16,7 @@ export const getBase = ({
16
  : initialPrompt
17
 
18
  const userSituationPrompt = [
19
- game.description,
20
  `Player is currently in "${currentPrompt}".`,
21
  lastEvent
22
  ].join(" ")
 
16
  : initialPrompt
17
 
18
  const userSituationPrompt = [
19
+ ...game.description,
20
  `Player is currently in "${currentPrompt}".`,
21
  lastEvent
22
  ].join(" ")