Merge pull request #846 from carnotcrash/patch-1

small update markers-generator.js
This commit is contained in:
Azgaar 2022-07-01 18:09:21 +03:00 committed by GitHub
commit 43f034b862
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -611,7 +611,7 @@ window.Markers = (function () {
const modusOperandi = [ const modusOperandi = [
"steals cattle at night", "steals cattle at night",
"prefers eating children", "prefers eating children",
"doesn't mind of human flesh", "doesn't mind human flesh",
"keeps the region at bay", "keeps the region at bay",
"eats kids whole", "eats kids whole",
"abducts young women", "abducts young women",
@ -878,11 +878,11 @@ window.Markers = (function () {
"Cranes", "Cranes",
"Crocodiles", "Crocodiles",
"Crows", "Crows",
"Deers", "Deer",
"Dogs", "Dogs",
"Eagles", "Eagles",
"Elks", "Elk",
"Foxs", "Foxes",
"Goats", "Goats",
"Geese", "Geese",
"Hares", "Hares",
@ -907,11 +907,11 @@ window.Markers = (function () {
"Rooks", "Rooks",
"Scorpions", "Scorpions",
"Sharks", "Sharks",
"Sheeps", "Sheep",
"Snakes", "Snakes",
"Spiders", "Spiders",
"Tigers", "Tigers",
"Wolfs", "Wolves",
"Wolverines", "Wolverines",
"Camels", "Camels",
"Falcons", "Falcons",
@ -921,7 +921,7 @@ window.Markers = (function () {
const animalChoice = ra(animals); const animalChoice = ra(animals);
const name = `${animalChoice} migration`; const name = `${animalChoice} migration`;
const legend = `A huge group of ${animalChoice.toLowerCase()} is migrating, though whether part of their annual routine, or something more extraordinary`; const legend = `A huge group of ${animalChoice.toLowerCase()} are migrating, whether part of their annual routine, or something more extraordinary`;
notes.push({id, name, legend}); notes.push({id, name, legend});
} }