diff --git a/index.php b/index.php
index 0f4a5fb..61f60eb 100644
--- a/index.php
+++ b/index.php
@@ -195,6 +195,7 @@
@@ -942,8 +943,22 @@
function setMobs() {
$("#mob_multiattack_ammount").attr("placeholder", "X / "+$("#mob_ammount").val())
$("#mob_multiattack_ammount").attr("max", $("#mob_ammount").val())
- if ($("#mob_ammount").val() < $("#mob_multiattack_ammount").val()) {
+ if ($("#mob_ammount").val() > 1 {
+
+ // FIX HP
+ usingHPDice(false);
+ $("#mob_hp_type_rolled").attr("disabled", true);
+ $("#mob_hp_type_averages").prop("checked", true);
+
+
+ usingDMGDice(false);
+ $("#mob_dmg_type_rolled").attr("disabled", true);
+ $("#mob_dmg_type_averages").prop("checked", true);
+
+ } else {
+ $("#mob_hp_type_rolled").removeAttr("disabled");
+ $("#mob_dmg_type_rolled").removeAttr("disabled");
}
}