summaryrefslogtreecommitdiff
path: root/play.js
diff options
context:
space:
mode:
authorTor Andersson <tor@ccxvii.net>2024-05-24 13:46:02 +0200
committerTor Andersson <tor@ccxvii.net>2024-05-30 21:59:25 +0200
commit515f47528549fb01636f287d82ced873ef341bfe (patch)
treea1bedbf658af8bc64e40fca19149731de4be2340 /play.js
parent327bc466cda87ce8741401f96a2f7a0d62f44769 (diff)
downloadfriedrich-515f47528549fb01636f287d82ced873ef341bfe.tar.gz
centered headers
Diffstat (limited to 'play.js')
-rw-r--r--play.js16
1 files changed, 8 insertions, 8 deletions
diff --git a/play.js b/play.js
index 5ef6ab6..b4da448 100644
--- a/play.js
+++ b/play.js
@@ -564,6 +564,8 @@ function on_init() {
update_favicon()
}
+on_init()
+
/* SHOW PATH FOR MOVES */
function on_focus_city(evt) {
@@ -964,14 +966,14 @@ function on_log(text) {
text = text.replace(/C(\d+)/g, sub_tc)
text = text.replace(/P(\d+)/g, sub_piece)
- if (text.match(/^# /)) {
- p.className = "h"
- text = text.substring(2)
- }
- else if (text.match(/^\$(\d+)/)) {
+ if (text.match(/^\$(\d+)/)) {
let fx = parseInt(text.substring(1))
text = `<p class="q">${fate_flavor_text[fx]}<p>${fate_effect_text[fx]}`
}
+ else if (text.match(/^# /)) {
+ p.className = "h fate"
+ text = text.substring(2)
+ }
else if (text.match(/^=\d/)) {
p.className = "h " + power_class[text[1]]
text = power_name[text[1]]
@@ -981,9 +983,7 @@ function on_log(text) {
return p
}
-on_init()
-
-// === COMMON LIBRARY ===
+/* COMMON LIBRARY */
function array_insert(array, index, item) {
for (let i = array.length; i > index; --i)