diff --git a/wevia-training.html b/wevia-training.html
index ed73a7855..5794350ba 100644
--- a/wevia-training.html
+++ b/wevia-training.html
@@ -141,7 +141,24 @@ body::before {
}
-
+
+
+
+
+
+
+
+
+
WEVIA Master Control Center
V77 · Training · Monitor · Brain · Multiagent · Empire
@@ -2867,7 +2884,7 @@ function drawBrainPulse(){
for (let i = 0; i < pts; i++){
const x = i * W / pts;
const base = H/2;
- const pulse = (i === Math.floor((now/1000) % pts)) ? 40 : (Math.sin(i*0.3 + now/800) * 15);
+ const pulse = Math.sin(i*0.3) * 15; /* DOCTRINE-220-STOP-WAVE: static, no slide */
const y = base - pulse;
if (i === 0) ctx.moveTo(x, y); else ctx.lineTo(x, y);
}
@@ -2878,7 +2895,7 @@ function drawBrainPulse(){
ctx.fillText('learning pulse · ' + new Date().toLocaleTimeString(), 10, 15);
}
-setInterval(() => { refreshBrainHeartbeat(); drawBrainPulse(); }, 3000);
+setInterval(() => { refreshBrainHeartbeat(); /* DOCTRINE-220-STOP-WAVE: drawBrainPulse() removed from interval - static rendering only */ }, 3000);
// ============== INIT ==============
async function init(){
@@ -3288,5 +3305,49 @@ setInterval(() => {
})();
+
+
+
+
+
+
+