From 92eef672e08dde8f32c58904e83644b7ecfde3b6 Mon Sep 17 00:00:00 2001 From: Djalim Simaila Date: Fri, 24 Jan 2025 14:14:30 +0100 Subject: [PATCH] =?UTF-8?q?fix(TP4.js):=20update=20the=20pokemons=20array?= =?UTF-8?q?=20to=20include=20the=20correct=20Pok=C3=A9mon=20ID=20380?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- static/js/TP4.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/js/TP4.js b/static/js/TP4.js index 6266b8a..3eac259 100644 --- a/static/js/TP4.js +++ b/static/js/TP4.js @@ -1,4 +1,4 @@ -var pokemons = [6,26,260,282,297,360] +var pokemons = [6,26,260,282,297,380] function chose_random_pokemon(){ let randnum = Math.floor(Math.random() * pokemons.length);