diff --git a/ai.js b/ai.js index 48200ce..761fe95 100644 --- a/ai.js +++ b/ai.js @@ -6,8 +6,7 @@ const ANIMAL_HUNGER_MAX = 100; /********************************************************************** * CITIZEN AI **********************************************************************/ -// Export functions -export function updateCitizen(cit) { +function updateCitizen(cit) { cit.hunger += HUNGER_INCREMENT; if(cit.hunger > HUNGER_MAX) cit.hunger = HUNGER_MAX; @@ -54,7 +53,7 @@ export function updateCitizen(cit) { /********************************************************************** * ANIMAL AI **********************************************************************/ -export function updateAnimal(ani) { +function updateAnimal(ani) { if(ani.type === "Rabbit") { updateRabbit(ani); } diff --git a/game.js b/game.js index a8aba94..b9f72de 100644 --- a/game.js +++ b/game.js @@ -1,8 +1,7 @@ /********************************************************************** * GAME CORE **********************************************************************/ -// Import AI functions -import { updateCitizen, updateAnimal } from './ai.js'; +// AI functions are defined in ai.js and loaded via script tag let frameCount = 0; let money = 5000; // Start with 5000 let purchaseMode = null; diff --git a/index.html b/index.html index 592205e..a0e852f 100644 --- a/index.html +++ b/index.html @@ -207,12 +207,12 @@
- +