Add two missing semi-colons to challenge seeds

Added missing semi-colons to two challenge seeds to have proper syntax and match challenge seeds for similar waypoints.

Closes #5575
This commit is contained in:
BKinahan
2015-12-30 21:28:59 +00:00
parent d9f40ac7f5
commit 4c8e119108

View File

@ -4181,7 +4181,7 @@
"challengeSeed": [ "challengeSeed": [
"<style>", "<style>",
" body {", " body {",
" background-color: rgb(0, 0, 0)", " background-color: rgb(0, 0, 0);",
" }", " }",
"</style>" "</style>"
], ],
@ -4222,7 +4222,7 @@
"challengeSeed": [ "challengeSeed": [
"<style>", "<style>",
" body {", " body {",
" background-color: rgb(255, 255, 255)", " background-color: rgb(255, 255, 255);",
" }", " }",
"</style>" "</style>"
], ],