diff --git a/features.js b/features.js index e4bcbe5..cbe470e 100644 --- a/features.js +++ b/features.js @@ -1219,6 +1219,7 @@ options = [ "id": "lactationEnabled", "type": "subcategory", "buttons": ["breast_milk"], + "warning": "Lactation is enabled", "entries": [ { @@ -1291,6 +1292,7 @@ options = [ "name": "Stench", "id": "stenchEnabled", "optional": true, + "warning": "Stench is enabled", "entries": [ { @@ -1323,6 +1325,7 @@ options = [ "name": "Gas", "id": "gasEnabled", "optional": true, + "warning": "Gas is enabled", "entries": [ { @@ -1368,6 +1371,7 @@ options = [ "id": "soulVoreEnabled", "optional": true, "buttons": ["soul_vore", "soul_absorb_paw"], + "warning": "Soul vore enabled", "entries": [ { @@ -1409,6 +1413,7 @@ options = [ "id": "pissEnabled", "optional": true, "buttons": ["piss"], + "warning": "Watersports enabled", "entries": [ { @@ -1482,6 +1487,7 @@ options = [ "id": "scatEnabled", "optional": true, "buttons": ["scat"], + "warning": "Scat is enabled", "entries": [ { diff --git a/game.js b/game.js index 02bf473..7066db8 100644 --- a/game.js +++ b/game.js @@ -4570,10 +4570,6 @@ function startGame(e) { enable_growth_part("body"); enable_growth_part("ass"); - if (macro.brutality > 0) { - warns.push("Fatal actions are enabled."); - } - if (macro.droolEnabled) { enable_victim("drool","Drenched in drool"); } @@ -4697,7 +4693,6 @@ function startGame(e) { enable_growth_part("breasts"); if (macro.lactationEnabled) { - warns.push("Lactation is enabled."); enable_victim("milk-flood","Flooded by milk"); enable_stat("milk"); @@ -4719,7 +4714,6 @@ function startGame(e) { } if (macro.soulVoreEnabled) { - warns.push("Soul vore is enabled."); enable_victim("soul-digest","Souls digested"); enable_victim("soul-paw","Souls absorbed underfoot"); @@ -4727,13 +4721,11 @@ function startGame(e) { } if (macro.stenchEnabled) { - warns.push("Stench is enabled."); enable_victim("paw-stench","Smothered in paw stench"); enable_victim("ass-stench","Smothered in rump stench"); } if (macro.gasEnabled) { - warns.push("Gas is enabled."); enable_stat("gas"); if (macro.belchEnabled) { enable_panel("waste"); @@ -4755,7 +4747,6 @@ function startGame(e) { } if (macro.pissEnabled) { - warns.push("Watersports are enabled."); enable_panel("waste"); enable_stat("piss"); @@ -4772,7 +4763,6 @@ function startGame(e) { } if (macro.scatEnabled) { - warns.push("Scat is enabled."); enable_panel("waste"); enable_stat("scat");