소스 검색

Fixed wing vore not having a manual digest option

tags/v1.0.0
Fen Dweller 7 년 전
부모
커밋
48cd605104
2개의 변경된 파일12개의 추가작업 그리고 0개의 파일을 삭제
  1. +4
    -0
      features.js
  2. +8
    -0
      game.js

+ 4
- 0
features.js 파일 보기

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


+ 8
- 0
game.js 파일 보기

@@ -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");
}
}
}



불러오는 중...
취소
저장