Skip to content

Commit

Permalink
Merge pull request mtgred#7457 from butzopower/fix-quotes
Browse files Browse the repository at this point in the history
Fix ID specific quotes
  • Loading branch information
NoahTheDuke authored Jun 17, 2024
2 parents d3a77a0 + 14d5f90 commit 09ad059
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion data/quotes-corp.edn
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@
"Shaper"
["BREAKING! CYBER-TERRORIST DEN INVESTIGATION REVEALS SHOCKING TRUTH ABOUT AVERAGE CITIZEN!"]}
"Nisei Division: The Next Generation"
{"Akiko Nisei: Head Case "
{"Akiko Nisei: Head Case"
["This signature is more than ordinary. There is a resonance here. Alert the chairman, our search may be over."]
"Anarch"
["This one is quite brash to barge in so unannounced, well, as far as they know."]
Expand Down
6 changes: 3 additions & 3 deletions data/quotes-runner.edn
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"NBN" ["To find the truth, one sometimes has to sift through the gutters."]
"Weyland"
["Building up and up and up, but they keep so much below. A dive here may reveal the unexpected."]}
"Akiko Nisei: Head Case "
"Akiko Nisei: Head Case"
{"Default"
["This red dust chokes everything it touches... Where did it come from?"
" I see them pacing in their towers, gleaming like sharpened knives..."
Expand Down Expand Up @@ -180,7 +180,7 @@
"Jinteki"
["50 credits to access \"Modern Foundations of Genomics\"? I think I'll find another way, thanks."]
"NBN"
["Such an astounding amount of data they collect and process. I think the professor would quite enjoy a term paper on this. Lets get to reaserch!"]
["Such an astounding amount of data they collect and process. I think the professor would quite enjoy a term paper on this. Lets get to research!"]
"Weyland" ["300% uptick in their strike force mobilisations? Oops...Did I do that?"]}
"Hoshiko Shiro: Next Level Shut-In"
{"Default" ["Do i have to?"]
Expand Down Expand Up @@ -326,7 +326,7 @@
"Near-Earth Hub: Broadcast Center" ["Once more up the beanstalk."]
"Weyland"
["In the kingdoms of the Builders of Worlds, so many secrets and hidden passages await... and so does danger."]}
"Nathaniel \"Gnat\" Hall: One-of-a-Kind "
"Nathaniel \"Gnat\" Hall: One-of-a-Kind"
{"Default" ["I don't need much to make a big difference. O bicho vai pegar!\n"]
"Haas-Bioroid"
["Machine men don't scare me, I'm too old to believe in those fairy tales."]
Expand Down
2 changes: 1 addition & 1 deletion src/clj/game/quotes.clj
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
opp-specific (get-in @identity-quotes [player-ident opp-ident])
weighted (concat (choose-and-repeat generic 1)
(choose-and-repeat opp-faction 3)
(choose-and-repeat opp-specific 0))
(choose-and-repeat opp-specific 20))
non-blank (filter identity weighted)]
(if (not-empty non-blank)
(first (shuffle non-blank))
Expand Down

0 comments on commit 09ad059

Please sign in to comment.