Procházet zdrojové kódy

Fixed wing vore not having a manual digest option

tags/v1.0.0
Fen Dweller před 7 roky
rodič
revize
48cd605104
2 změnil soubory, kde provedl 12 přidání a 0 odebrání
  1. +4
    -0
      features.js
  2. +8
    -0
      game.js

+ 4
- 0
features.js Zobrazit soubor

@@ -379,6 +379,10 @@ panels = {
{
"name": "Wing Vore",
"target": "wings_vore"
},
{
"name": "Digest Wings",
"target": "digest_wings"
}
]
},


+ 8
- 0
game.js Zobrazit soubor

@@ -1915,6 +1915,10 @@ function digest_paws() {
digest_all(macro.pawsVore, true);
}

function digest_wings() {
digest_all(macro.wings, true);
}

function crop_swallow()
{
digest_all(macro.crop, true);
@@ -4667,6 +4671,10 @@ function startGame(e) {
if (macro.wingVoreEnabled) {
enable_button("wings_vore");
enable_victim("wings-vore");

if (macro.wingDigestTime == 0) {
enable_button("digest_wings");
}
}
}



Načítá se…
Zrušit
Uložit