From 3d5467123483e0947276867242d6d00432868e45 Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Sun, 1 Mar 2026 22:12:18 +0000
Subject: [PATCH 1/2] Initial plan
From 7b012cecfcc70e190c58df4a9eac7c438de964bd Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Sun, 1 Mar 2026 22:18:09 +0000
Subject: [PATCH 2/2] docs: dark mode, language switcher fix, version bump,
breadcrumbs
- Fix changeLanguage() to detect subfolder context and use '../' prefix
- Add dark mode toggle with localStorage persistence (JS + CSS)
- Replace click-to-copy code behavior with floating copy button
- Update Version 1.2.02 -> 1.2.11 in all 54 HTML files
- Update copyright year 2024 -> 2025 in all 54 HTML files
- Update Minecraft version stat to 'MC 1.20.1 - 1.21.x' in index files
- Add breadcrumb navigation to all 45 non-index HTML files
with localized home text per language (Accueil/Startseite/Inicio/etc.)
- Add dark mode and breadcrumb CSS to style.css
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
---
docs/api.html | 14 +++-
docs/assets/css/style.css | 167 +++++++++++++++++++++++++++++++++++++
docs/assets/js/main.js | 75 +++++++++++++----
docs/commands.html | 14 +++-
docs/configuration.html | 14 +++-
docs/de/api.html | 14 +++-
docs/de/commands.html | 14 +++-
docs/de/configuration.html | 14 +++-
docs/de/index.html | 9 +-
docs/de/npc-system.html | 14 +++-
docs/de/permissions.html | 14 +++-
docs/es/api.html | 14 +++-
docs/es/commands.html | 14 +++-
docs/es/configuration.html | 14 +++-
docs/es/index.html | 9 +-
docs/es/npc-system.html | 14 +++-
docs/es/permissions.html | 14 +++-
docs/fr/api.html | 14 +++-
docs/fr/commands.html | 14 +++-
docs/fr/configuration.html | 14 +++-
docs/fr/index.html | 9 +-
docs/fr/npc-system.html | 14 +++-
docs/fr/permissions.html | 14 +++-
docs/index.html | 9 +-
docs/it/api.html | 14 +++-
docs/it/commands.html | 14 +++-
docs/it/configuration.html | 14 +++-
docs/it/index.html | 9 +-
docs/it/npc-system.html | 14 +++-
docs/it/permissions.html | 14 +++-
docs/kr/api.html | 14 +++-
docs/kr/commands.html | 14 +++-
docs/kr/configuration.html | 14 +++-
docs/kr/index.html | 9 +-
docs/kr/npc-system.html | 14 +++-
docs/kr/permissions.html | 14 +++-
docs/npc-system.html | 14 +++-
docs/permissions.html | 14 +++-
docs/pt/api.html | 14 +++-
docs/pt/commands.html | 14 +++-
docs/pt/configuration.html | 14 +++-
docs/pt/index.html | 9 +-
docs/pt/npc-system.html | 14 +++-
docs/pt/permissions.html | 14 +++-
docs/ru/api.html | 14 +++-
docs/ru/commands.html | 14 +++-
docs/ru/configuration.html | 14 +++-
docs/ru/index.html | 9 +-
docs/ru/npc-system.html | 14 +++-
docs/ru/permissions.html | 14 +++-
docs/zh/api.html | 14 +++-
docs/zh/commands.html | 14 +++-
docs/zh/configuration.html | 14 +++-
docs/zh/index.html | 9 +-
docs/zh/npc-system.html | 14 +++-
docs/zh/permissions.html | 14 +++-
56 files changed, 822 insertions(+), 131 deletions(-)
diff --git a/docs/api.html b/docs/api.html
index 724a103..ce9b9d0 100644
--- a/docs/api.html
+++ b/docs/api.html
@@ -25,6 +25,9 @@
NPC System
API
+
diff --git a/docs/assets/css/style.css b/docs/assets/css/style.css
index a549ab5..6d690be 100644
--- a/docs/assets/css/style.css
+++ b/docs/assets/css/style.css
@@ -750,3 +750,170 @@ tbody tr:hover {
.fade-in {
animation: fadeIn 0.6s ease-out;
}
+
+/* Dark Mode */
+[data-theme="dark"] {
+ --text-color: #e0e0e0;
+ --text-light: #a0a0a0;
+ --border-color: #444;
+ --shadow: 0 2px 10px rgba(0,0,0,0.3);
+ --shadow-hover: 0 4px 20px rgba(0,0,0,0.4);
+ --light-color: #3a3a3a;
+}
+
+[data-theme="dark"] body {
+ background-color: #1a1a2e;
+ color: var(--text-color);
+}
+
+[data-theme="dark"] .feature-card,
+[data-theme="dark"] .quick-start-step,
+[data-theme="dark"] .gameplay-item,
+[data-theme="dark"] .compatibility-card,
+[data-theme="dark"] .resource-card {
+ background: #16213e;
+ color: var(--text-color);
+}
+
+[data-theme="dark"] .bg-light {
+ background-color: #16213e;
+}
+
+[data-theme="dark"] table {
+ background: #16213e;
+}
+
+[data-theme="dark"] tbody tr:nth-child(even) {
+ background-color: #1e2a45;
+}
+
+[data-theme="dark"] tbody tr:hover {
+ background-color: #1a3a5c;
+}
+
+[data-theme="dark"] pre {
+ background-color: #0f0f1a;
+ border: 1px solid #333;
+}
+
+[data-theme="dark"] code {
+ background-color: #2a2a3e;
+ color: #e06c75;
+}
+
+[data-theme="dark"] .section-title {
+ color: #e0e0e0;
+}
+
+[data-theme="dark"] .feature-card h3,
+[data-theme="dark"] .gameplay-item h3,
+[data-theme="dark"] .compatibility-card h3 {
+ color: #e0e0e0;
+}
+
+[data-theme="dark"] .resource-card {
+ color: var(--text-color);
+}
+
+[data-theme="dark"] .resource-card h3 {
+ color: #e0e0e0;
+}
+
+[data-theme="dark"] .footer {
+ background-color: #0d0d1a;
+}
+
+/* Copy button for code blocks */
+.copy-btn {
+ position: absolute;
+ top: 0.5rem;
+ right: 0.5rem;
+ background: rgba(255,255,255,0.1);
+ border: 1px solid rgba(255,255,255,0.2);
+ color: #666;
+ padding: 0.3rem 0.6rem;
+ border-radius: 4px;
+ cursor: pointer;
+ font-size: 0.85rem;
+ transition: all 0.2s;
+ z-index: 1;
+}
+
+.copy-btn:hover {
+ background: rgba(0,0,0,0.1);
+ color: #333;
+}
+
+[data-theme="dark"] .copy-btn {
+ background: rgba(255,255,255,0.05);
+ color: #aaa;
+}
+
+[data-theme="dark"] .copy-btn:hover {
+ background: rgba(255,255,255,0.15);
+ color: #eee;
+}
+
+/* Dark mode toggle button */
+.dark-mode-toggle {
+ background: none;
+ border: 1px solid rgba(255,255,255,0.3);
+ color: white;
+ padding: 0.4rem 0.6rem;
+ border-radius: 5px;
+ cursor: pointer;
+ font-size: 1rem;
+ transition: all 0.2s;
+ margin-left: 0.5rem;
+}
+
+.dark-mode-toggle:hover {
+ background: rgba(255,255,255,0.2);
+}
+
+/* Smooth transitions for dark mode */
+body, .feature-card, .quick-start-step, .gameplay-item,
+.compatibility-card, .resource-card, table, pre, code {
+ transition: background-color 0.3s ease, color 0.3s ease;
+}
+
+/* Breadcrumb */
+.breadcrumb {
+ padding: 0.75rem 0;
+ margin-bottom: 1.5rem;
+ border-bottom: 1px solid var(--border-color);
+}
+
+.breadcrumb ol {
+ list-style: none;
+ display: flex;
+ align-items: center;
+ flex-wrap: wrap;
+ gap: 0.5rem;
+ padding: 0;
+ margin: 0;
+}
+
+.breadcrumb a {
+ color: var(--primary-color);
+ text-decoration: none;
+ font-size: 0.9rem;
+}
+
+.breadcrumb a:hover {
+ text-decoration: underline;
+}
+
+.breadcrumb-separator {
+ color: var(--text-light);
+ font-size: 0.75rem;
+}
+
+.breadcrumb-current {
+ color: var(--text-light);
+ font-size: 0.9rem;
+}
+
+[data-theme="dark"] .breadcrumb {
+ border-color: #333;
+}
diff --git a/docs/assets/js/main.js b/docs/assets/js/main.js
index e048be3..427de25 100644
--- a/docs/assets/js/main.js
+++ b/docs/assets/js/main.js
@@ -1,20 +1,56 @@
// Language switcher functionality
function changeLanguage(lang) {
const currentPage = window.location.pathname.split('/').pop() || 'index.html';
- const pageName = currentPage.replace('.html', '');
+ const pageName = currentPage.replace('.html', '') || 'index';
// Store language preference
localStorage.setItem('preferredLanguage', lang);
+ // Detect if we're currently in a language subfolder
+ const currentPath = window.location.pathname;
+ const isInSubfolder = /\/(fr|es|de|it|ru|zh|kr|pt)\//.test(currentPath);
+ const prefix = isInSubfolder ? '../' : '';
+
// Redirect to language-specific page
if (lang !== 'en') {
- window.location.href = `${lang}/${pageName}.html`;
+ window.location.href = prefix + lang + '/' + pageName + '.html';
} else {
- // English is the default, no subfolder
- window.location.href = `${pageName}.html`;
+ window.location.href = prefix + pageName + '.html';
+ }
+}
+
+// Dark mode toggle
+function initDarkMode() {
+ const savedTheme = localStorage.getItem('theme') || 'light';
+ if (savedTheme === 'dark') {
+ document.documentElement.setAttribute('data-theme', 'dark');
+ }
+
+ const toggleBtn = document.getElementById('dark-mode-toggle');
+ if (toggleBtn) {
+ toggleBtn.addEventListener('click', function() {
+ const current = document.documentElement.getAttribute('data-theme');
+ const newTheme = current === 'dark' ? 'light' : 'dark';
+ document.documentElement.setAttribute('data-theme', newTheme);
+ localStorage.setItem('theme', newTheme);
+ updateDarkModeIcon(newTheme);
+ });
+ updateDarkModeIcon(savedTheme);
}
}
+function updateDarkModeIcon(theme) {
+ const toggleBtn = document.getElementById('dark-mode-toggle');
+ if (toggleBtn) {
+ const icon = toggleBtn.querySelector('i');
+ if (icon) {
+ icon.className = theme === 'dark' ? 'fas fa-sun' : 'fas fa-moon';
+ }
+ }
+}
+
+document.addEventListener('DOMContentLoaded', initDarkMode);
+
// Set language selector to current language on page load
document.addEventListener('DOMContentLoaded', function() {
const preferredLang = localStorage.getItem('preferredLanguage') || 'en';
@@ -106,19 +142,30 @@ document.addEventListener('DOMContentLoaded', function() {
});
}
- // Copy code blocks on click
- document.querySelectorAll('pre code').forEach(block => {
- block.addEventListener('click', function() {
- const text = this.textContent;
+ // Add copy buttons to code blocks
+ document.querySelectorAll('pre').forEach(pre => {
+ const wrapper = document.createElement('div');
+ wrapper.style.position = 'relative';
+ pre.parentNode.insertBefore(wrapper, pre);
+ wrapper.appendChild(pre);
+
+ const copyBtn = document.createElement('button');
+ copyBtn.innerHTML = '';
+ copyBtn.className = 'copy-btn';
+ copyBtn.title = 'Copy to clipboard';
+ copyBtn.addEventListener('click', function() {
+ const code = pre.querySelector('code');
+ const text = code ? code.textContent : pre.textContent;
navigator.clipboard.writeText(text).then(function() {
- // Show copied notification
- const notification = document.createElement('div');
- notification.textContent = 'Copied!';
- notification.style.cssText = 'position:fixed;top:20px;right:20px;background:#27ae60;color:white;padding:1rem 2rem;border-radius:8px;z-index:9999;';
- document.body.appendChild(notification);
- setTimeout(() => notification.remove(), 2000);
+ copyBtn.innerHTML = '';
+ copyBtn.style.color = '#27ae60';
+ setTimeout(() => {
+ copyBtn.innerHTML = '';
+ copyBtn.style.color = '';
+ }, 2000);
});
});
+ pre.appendChild(copyBtn);
});
});
diff --git a/docs/commands.html b/docs/commands.html
index 0ace7a4..15b5af5 100644
--- a/docs/commands.html
+++ b/docs/commands.html
@@ -25,6 +25,9 @@
NPC System
API
+
diff --git a/docs/configuration.html b/docs/configuration.html
index 1775636..71e2bbd 100644
--- a/docs/configuration.html
+++ b/docs/configuration.html
@@ -25,6 +25,9 @@
NPC System
API
+
diff --git a/docs/de/api.html b/docs/de/api.html
index 4d67eff..80d70d6 100644
--- a/docs/de/api.html
+++ b/docs/de/api.html
@@ -25,6 +25,9 @@
NPC-System
API
+
diff --git a/docs/de/commands.html b/docs/de/commands.html
index 63a2c6c..85e23f4 100644
--- a/docs/de/commands.html
+++ b/docs/de/commands.html
@@ -25,6 +25,9 @@
NPC-System
API
+
diff --git a/docs/de/configuration.html b/docs/de/configuration.html
index 71ab770..2b9473d 100644
--- a/docs/de/configuration.html
+++ b/docs/de/configuration.html
@@ -25,6 +25,9 @@
NPC-System
API
+
diff --git a/docs/de/index.html b/docs/de/index.html
index 3705652..59def58 100644
--- a/docs/de/index.html
+++ b/docs/de/index.html
@@ -25,6 +25,9 @@
Système NPC
API
+
+
@@ -43,6 +46,13 @@
+
Berechtigungen Reference
@@ -464,7 +474,7 @@
Balance
diff --git a/docs/es/api.html b/docs/es/api.html
index 8028409..dc914d1 100644
--- a/docs/es/api.html
+++ b/docs/es/api.html
@@ -25,6 +25,9 @@
Sistema NPC
API
+
@@ -43,6 +46,13 @@
+
Developer API
@@ -443,7 +453,7 @@
Common Pitfalls
diff --git a/docs/es/commands.html b/docs/es/commands.html
index c579eea..44e917f 100644
--- a/docs/es/commands.html
+++ b/docs/es/commands.html
@@ -25,6 +25,9 @@
Sistema NPC
API
+
@@ -43,6 +46,13 @@
+
Comandos Reference
@@ -374,7 +384,7 @@
NPC Comandos
diff --git a/docs/es/configuration.html b/docs/es/configuration.html
index 0796076..e143f86 100644
--- a/docs/es/configuration.html
+++ b/docs/es/configuration.html
@@ -25,6 +25,9 @@
Sistema NPC
API
+
@@ -43,6 +46,13 @@
+
Configuración Guide
@@ -460,7 +470,7 @@
Balance
diff --git a/docs/es/index.html b/docs/es/index.html
index 7a2107d..3f118ea 100644
--- a/docs/es/index.html
+++ b/docs/es/index.html
@@ -25,6 +25,9 @@
Système NPC
API
+
@@ -59,7 +62,7 @@ ReanimateMC
- Minecraft 1.20.1+
+ MC 1.20.1 - 1.21.x
Version Serveur
@@ -297,7 +300,7 @@
GitHub
diff --git a/docs/es/npc-system.html b/docs/es/npc-system.html
index e46163b..a4aa0b0 100644
--- a/docs/es/npc-system.html
+++ b/docs/es/npc-system.html
@@ -25,6 +25,9 @@
Sistema NPC
API
+
@@ -43,6 +46,13 @@
+
NPC Summon System
@@ -343,7 +353,7 @@
Limitations
diff --git a/docs/es/permissions.html b/docs/es/permissions.html
index cf29a88..0e559a3 100644
--- a/docs/es/permissions.html
+++ b/docs/es/permissions.html
@@ -25,6 +25,9 @@
Sistema NPC
API
+
@@ -43,6 +46,13 @@
+
Permisos Reference
@@ -464,7 +474,7 @@
Balance
diff --git a/docs/fr/api.html b/docs/fr/api.html
index 7c5ba87..be52439 100644
--- a/docs/fr/api.html
+++ b/docs/fr/api.html
@@ -25,6 +25,9 @@
Système NPC
API
+
@@ -43,6 +46,13 @@
+
Developer API
@@ -443,7 +453,7 @@
Common Pitfalls
diff --git a/docs/fr/commands.html b/docs/fr/commands.html
index 1acb748..59482cd 100644
--- a/docs/fr/commands.html
+++ b/docs/fr/commands.html
@@ -25,6 +25,9 @@
Système NPC
API
+
@@ -43,6 +46,13 @@
+
Référence des Commandes
@@ -374,7 +384,7 @@
NPC Commandes
diff --git a/docs/fr/configuration.html b/docs/fr/configuration.html
index 22a9391..b21e124 100644
--- a/docs/fr/configuration.html
+++ b/docs/fr/configuration.html
@@ -25,6 +25,9 @@
Système NPC
API
+
@@ -43,6 +46,13 @@
+
Configuration Guide
@@ -460,7 +470,7 @@
Balance
diff --git a/docs/fr/index.html b/docs/fr/index.html
index 465da2a..cb0ef37 100644
--- a/docs/fr/index.html
+++ b/docs/fr/index.html
@@ -25,6 +25,9 @@
Système NPC
API
+
@@ -59,7 +62,7 @@ ReanimateMC
- Minecraft 1.20.1+
+ MC 1.20.1 - 1.21.x
Version Serveur
@@ -297,7 +300,7 @@
GitHub
diff --git a/docs/fr/npc-system.html b/docs/fr/npc-system.html
index 8666006..347a326 100644
--- a/docs/fr/npc-system.html
+++ b/docs/fr/npc-system.html
@@ -25,6 +25,9 @@
Système NPC
API
+
@@ -43,6 +46,13 @@
+
NPC Summon System
@@ -343,7 +353,7 @@
Limitations
diff --git a/docs/fr/permissions.html b/docs/fr/permissions.html
index efaa104..cf846f0 100644
--- a/docs/fr/permissions.html
+++ b/docs/fr/permissions.html
@@ -25,6 +25,9 @@
Système NPC
API
+
@@ -43,6 +46,13 @@
+
Permissions Reference
@@ -464,7 +474,7 @@
Balance
diff --git a/docs/index.html b/docs/index.html
index 92173cc..3643e90 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -25,6 +25,9 @@
NPC System
API
+
@@ -59,7 +62,7 @@ ReanimateMC
- Minecraft 1.20.1+
+ MC 1.20.1 - 1.21.x
Server Version
@@ -297,7 +300,7 @@
GitHub
diff --git a/docs/it/api.html b/docs/it/api.html
index 1f57973..66176b5 100644
--- a/docs/it/api.html
+++ b/docs/it/api.html
@@ -25,6 +25,9 @@
Sistema NPC
API
+
@@ -43,6 +46,13 @@
+
Developer API
@@ -443,7 +453,7 @@
Common Pitfalls
diff --git a/docs/it/commands.html b/docs/it/commands.html
index 14d1da3..5212c64 100644
--- a/docs/it/commands.html
+++ b/docs/it/commands.html
@@ -25,6 +25,9 @@
Sistema NPC
API
+
@@ -43,6 +46,13 @@
+
Comandi Reference
@@ -374,7 +384,7 @@
NPC Comandi
diff --git a/docs/it/configuration.html b/docs/it/configuration.html
index a2f33f5..0e2d21f 100644
--- a/docs/it/configuration.html
+++ b/docs/it/configuration.html
@@ -25,6 +25,9 @@
Sistema NPC
API
+
@@ -43,6 +46,13 @@
+
Configurazione Guide
@@ -460,7 +470,7 @@
Balance
diff --git a/docs/it/index.html b/docs/it/index.html
index c5e833d..c1e486d 100644
--- a/docs/it/index.html
+++ b/docs/it/index.html
@@ -25,6 +25,9 @@
Système NPC
API
+
@@ -59,7 +62,7 @@ ReanimateMC
- Minecraft 1.20.1+
+ MC 1.20.1 - 1.21.x
Version Serveur
@@ -297,7 +300,7 @@
GitHub
diff --git a/docs/it/npc-system.html b/docs/it/npc-system.html
index 925ac7b..7473e92 100644
--- a/docs/it/npc-system.html
+++ b/docs/it/npc-system.html
@@ -25,6 +25,9 @@
Sistema NPC
API
+
@@ -43,6 +46,13 @@
+
NPC Summon System
@@ -343,7 +353,7 @@
Limitations
diff --git a/docs/it/permissions.html b/docs/it/permissions.html
index c4c652f..7378503 100644
--- a/docs/it/permissions.html
+++ b/docs/it/permissions.html
@@ -25,6 +25,9 @@
Sistema NPC
API
+
@@ -43,6 +46,13 @@
+
Permessi Reference
@@ -464,7 +474,7 @@
Balance
diff --git a/docs/kr/api.html b/docs/kr/api.html
index 482ce60..04f5886 100644
--- a/docs/kr/api.html
+++ b/docs/kr/api.html
@@ -25,6 +25,9 @@
NPC 시스템
API
+
@@ -43,6 +46,13 @@
+
Developer API
@@ -443,7 +453,7 @@
Common Pitfalls
diff --git a/docs/kr/commands.html b/docs/kr/commands.html
index f296cb7..51464f2 100644
--- a/docs/kr/commands.html
+++ b/docs/kr/commands.html
@@ -25,6 +25,9 @@
NPC 시스템
API
+
@@ -43,6 +46,13 @@
+
명령어 Reference
@@ -374,7 +384,7 @@
NPC 명령어
diff --git a/docs/kr/configuration.html b/docs/kr/configuration.html
index 299af5f..635e56c 100644
--- a/docs/kr/configuration.html
+++ b/docs/kr/configuration.html
@@ -25,6 +25,9 @@
NPC 시스템
API
+
@@ -43,6 +46,13 @@
+
설정 Guide
@@ -460,7 +470,7 @@
Balance
diff --git a/docs/kr/index.html b/docs/kr/index.html
index 794edf7..eae0b06 100644
--- a/docs/kr/index.html
+++ b/docs/kr/index.html
@@ -25,6 +25,9 @@
Système NPC
API
+
@@ -59,7 +62,7 @@ ReanimateMC
- Minecraft 1.20.1+
+ MC 1.20.1 - 1.21.x
Version Serveur
@@ -297,7 +300,7 @@
GitHub
diff --git a/docs/kr/npc-system.html b/docs/kr/npc-system.html
index 56bbc86..87de9ec 100644
--- a/docs/kr/npc-system.html
+++ b/docs/kr/npc-system.html
@@ -25,6 +25,9 @@
NPC 시스템
API
+
@@ -43,6 +46,13 @@
+
NPC Summon System
@@ -343,7 +353,7 @@
Limitations
diff --git a/docs/kr/permissions.html b/docs/kr/permissions.html
index 3dcfbac..21007e8 100644
--- a/docs/kr/permissions.html
+++ b/docs/kr/permissions.html
@@ -25,6 +25,9 @@
NPC 시스템
API
+
@@ -43,6 +46,13 @@
+
권한 Reference
@@ -464,7 +474,7 @@
Balance
diff --git a/docs/npc-system.html b/docs/npc-system.html
index 66493ed..610724c 100644
--- a/docs/npc-system.html
+++ b/docs/npc-system.html
@@ -25,6 +25,9 @@
NPC System
API
+
@@ -43,6 +46,13 @@
+
NPC Summon System
@@ -343,7 +353,7 @@
Limitations
diff --git a/docs/permissions.html b/docs/permissions.html
index 54527ca..8e6937f 100644
--- a/docs/permissions.html
+++ b/docs/permissions.html
@@ -25,6 +25,9 @@
NPC System
API
+
@@ -43,6 +46,13 @@
+
Permissions Reference
@@ -464,7 +474,7 @@
Balance
diff --git a/docs/pt/api.html b/docs/pt/api.html
index 52f8e58..835b0d4 100644
--- a/docs/pt/api.html
+++ b/docs/pt/api.html
@@ -25,6 +25,9 @@
Sistema NPC
API
+
@@ -43,6 +46,13 @@
+
Developer API
@@ -443,7 +453,7 @@
Common Pitfalls
diff --git a/docs/pt/commands.html b/docs/pt/commands.html
index a9cc020..5c574ce 100644
--- a/docs/pt/commands.html
+++ b/docs/pt/commands.html
@@ -25,6 +25,9 @@
Sistema NPC
API
+
@@ -43,6 +46,13 @@
+
Comandos Reference
@@ -374,7 +384,7 @@
NPC Comandos
diff --git a/docs/pt/configuration.html b/docs/pt/configuration.html
index cec6e1b..9746530 100644
--- a/docs/pt/configuration.html
+++ b/docs/pt/configuration.html
@@ -25,6 +25,9 @@
Sistema NPC
API
+
@@ -43,6 +46,13 @@
+
Configuração Guide
@@ -460,7 +470,7 @@
Balance
diff --git a/docs/pt/index.html b/docs/pt/index.html
index bdd3344..b11f6a8 100644
--- a/docs/pt/index.html
+++ b/docs/pt/index.html
@@ -25,6 +25,9 @@
Système NPC
API
+
@@ -59,7 +62,7 @@ ReanimateMC
- Minecraft 1.20.1+
+ MC 1.20.1 - 1.21.x
Version Serveur
@@ -297,7 +300,7 @@
GitHub
diff --git a/docs/pt/npc-system.html b/docs/pt/npc-system.html
index 84676ca..4ee753e 100644
--- a/docs/pt/npc-system.html
+++ b/docs/pt/npc-system.html
@@ -25,6 +25,9 @@
Sistema NPC
API
+
@@ -43,6 +46,13 @@
+
NPC Summon System
@@ -343,7 +353,7 @@
Limitations
diff --git a/docs/pt/permissions.html b/docs/pt/permissions.html
index f90dd72..368a18e 100644
--- a/docs/pt/permissions.html
+++ b/docs/pt/permissions.html
@@ -25,6 +25,9 @@
Sistema NPC
API
+
@@ -43,6 +46,13 @@
+
Permissões Reference
@@ -464,7 +474,7 @@
Balance
diff --git a/docs/ru/api.html b/docs/ru/api.html
index c7173d3..e6d5997 100644
--- a/docs/ru/api.html
+++ b/docs/ru/api.html
@@ -25,6 +25,9 @@
Система NPC
API
+
@@ -43,6 +46,13 @@
+
Developer API
@@ -443,7 +453,7 @@
Common Pitfalls
diff --git a/docs/ru/commands.html b/docs/ru/commands.html
index ebcc79c..a833e5d 100644
--- a/docs/ru/commands.html
+++ b/docs/ru/commands.html
@@ -25,6 +25,9 @@
Система NPC
API
+
@@ -43,6 +46,13 @@
+
Команды Reference
@@ -374,7 +384,7 @@
NPC Команды
diff --git a/docs/ru/configuration.html b/docs/ru/configuration.html
index a6429ac..e103c43 100644
--- a/docs/ru/configuration.html
+++ b/docs/ru/configuration.html
@@ -25,6 +25,9 @@
Система NPC
API
+
@@ -43,6 +46,13 @@
+
Конфигурация Guide
@@ -460,7 +470,7 @@
Balance
diff --git a/docs/ru/index.html b/docs/ru/index.html
index 15e4e43..afebbec 100644
--- a/docs/ru/index.html
+++ b/docs/ru/index.html
@@ -25,6 +25,9 @@
Système NPC
API
+
@@ -59,7 +62,7 @@ ReanimateMC
- Minecraft 1.20.1+
+ MC 1.20.1 - 1.21.x
Version Serveur
@@ -297,7 +300,7 @@
GitHub
diff --git a/docs/ru/npc-system.html b/docs/ru/npc-system.html
index 9a11271..b5f61c6 100644
--- a/docs/ru/npc-system.html
+++ b/docs/ru/npc-system.html
@@ -25,6 +25,9 @@
Система NPC
API
+
@@ -43,6 +46,13 @@
+
NPC Summon System
@@ -343,7 +353,7 @@
Limitations
diff --git a/docs/ru/permissions.html b/docs/ru/permissions.html
index b2107ce..803bdf8 100644
--- a/docs/ru/permissions.html
+++ b/docs/ru/permissions.html
@@ -25,6 +25,9 @@
Система NPC
API
+
@@ -43,6 +46,13 @@
+
Разрешения Reference
@@ -464,7 +474,7 @@
Balance
diff --git a/docs/zh/api.html b/docs/zh/api.html
index 1372c0b..dd75df0 100644
--- a/docs/zh/api.html
+++ b/docs/zh/api.html
@@ -25,6 +25,9 @@
NPC系统
API
+
@@ -43,6 +46,13 @@
+
Developer API
@@ -443,7 +453,7 @@
Common Pitfalls
diff --git a/docs/zh/commands.html b/docs/zh/commands.html
index 9f83f83..ef541f1 100644
--- a/docs/zh/commands.html
+++ b/docs/zh/commands.html
@@ -25,6 +25,9 @@
NPC系统
API
+
@@ -43,6 +46,13 @@
+
命令 Reference
@@ -374,7 +384,7 @@
NPC 命令
diff --git a/docs/zh/configuration.html b/docs/zh/configuration.html
index 234c05f..e4d43da 100644
--- a/docs/zh/configuration.html
+++ b/docs/zh/configuration.html
@@ -25,6 +25,9 @@
NPC系统
API
+
@@ -43,6 +46,13 @@
+
配置 Guide
@@ -460,7 +470,7 @@
Balance
diff --git a/docs/zh/index.html b/docs/zh/index.html
index c148926..66776d9 100644
--- a/docs/zh/index.html
+++ b/docs/zh/index.html
@@ -25,6 +25,9 @@
Système NPC
API
+
@@ -59,7 +62,7 @@ ReanimateMC
- Minecraft 1.20.1+
+ MC 1.20.1 - 1.21.x
Version Serveur
@@ -297,7 +300,7 @@
GitHub
diff --git a/docs/zh/npc-system.html b/docs/zh/npc-system.html
index a4a60a9..942dedc 100644
--- a/docs/zh/npc-system.html
+++ b/docs/zh/npc-system.html
@@ -25,6 +25,9 @@
NPC系统
API
+
@@ -43,6 +46,13 @@
+
NPC Summon System
@@ -343,7 +353,7 @@
Limitations
diff --git a/docs/zh/permissions.html b/docs/zh/permissions.html
index 4af1ac7..3fe3e08 100644
--- a/docs/zh/permissions.html
+++ b/docs/zh/permissions.html
@@ -25,6 +25,9 @@
NPC系统
API
+
@@ -43,6 +46,13 @@
+
权限 Reference
@@ -464,7 +474,7 @@
Balance