diff --git a/PROJECT/Yamanobo-Ryou/index.html b/PROJECT/Yamanobo-Ryou/index.html
index 1794520..8df302f 100644
--- a/PROJECT/Yamanobo-Ryou/index.html
+++ b/PROJECT/Yamanobo-Ryou/index.html
@@ -10,7 +10,7 @@
山田凉上山
-
+
@@ -2037,7 +2037,7 @@ 图标
山田凉上山
by SAM TOKI STUDIO
- 版本 v1.00 ()
+
版本 v1.01 ()
始于 2024/10/13
-
diff --git a/PROJECT/Yamanobo-Ryou/scripts/script.js b/PROJECT/Yamanobo-Ryou/scripts/script.js
index 056c459..e5cb871 100644
--- a/PROJECT/Yamanobo-Ryou/scripts/script.js
+++ b/PROJECT/Yamanobo-Ryou/scripts/script.js
@@ -6,7 +6,7 @@
// Declare variables
"use strict";
// Unsaved
- const CurrentVersion = 1.00;
+ const CurrentVersion = 1.01;
var Game0 = {
Terrain: {
WalkedWidth: 0,
@@ -757,7 +757,7 @@
ChangeValue("Textbox_Game", "");
ShowToast("胜利!");
Highscore[6][1] = "最新";
- Highscore[6][2] = new Date(Date.now()).toLocaleDateString(System.I18n.Language);
+ Highscore[6][2] = new Date(Date.now()).toLocaleDateString(ReadLanguage("Html"));
Highscore[6][3] = Game.Stats.Score.toString().padStart(8, "0");
Highscore[6][4] = Game.Stats.AvgSpeed.toFixed(0) + "cpm";
Highscore[6][5] = Game.Stats.AvgKeystrokeSpeed.toFixed(0) + "kpm";
diff --git a/PROJECT/scripts/common.js b/PROJECT/scripts/common.js
index 86aec25..aeb4146 100644
--- a/PROJECT/scripts/common.js
+++ b/PROJECT/scripts/common.js
@@ -71,6 +71,9 @@
function ReadValue(ID) {
return document.getElementById(ID).value;
}
+ function ReadLanguage(ID) {
+ return document.getElementById(ID).lang;
+ }
// Position
function ReadTop(ID) {