From 6c711d468879ae5fbfd8c57ac3a240f09dfb758b Mon Sep 17 00:00:00 2001 From: Giulio Prisco Date: Sat, 18 May 2024 08:12:04 +0200 Subject: [PATCH] Update menus.js --- behaviors/default/menus.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/behaviors/default/menus.js b/behaviors/default/menus.js index de03f30..38d60f2 100644 --- a/behaviors/default/menus.js +++ b/behaviors/default/menus.js @@ -19,9 +19,6 @@ class MenuPawn extends PawnBehavior { setup(){ if(this.menuItems)this.teardown(); this.menuItems = []; - this.installMenu("+100 bots", "./assets/images/masks-theater.png", ()=>this.publish("menu", "addBots")); - this.installMenu("Remove bots", "./assets/images/masks-theater-off.png", ()=>this.publish("menu", "killBots")); - this.installMenu("Toggle Fireball", "./assets/images/fireball.png", ()=>this.publish("menu","FireballToggle")); this.installMenu("Toggle Sound", "./assets/images/speaker-icon.png", ()=>this.publish("menu", "startStopWind")); this.installMenu("Code on Github", "./assets/images/github.png", ()=>this.linkTo("https://github.com/croquet/mythos"));