diff --git a/tessera.lic b/tessera.lic index ee6b6560c2..d5594f3318 100644 --- a/tessera.lic +++ b/tessera.lic @@ -15,7 +15,6 @@ class Tessera @no_use_scripts = settings.tessera_no_use_scripts @no_use_rooms = settings.tessera_no_use_rooms @tessera = settings.tessera_noun - @tessera_mindstates = settings.tessera_mindstates pause @startup_delay passive_loop @@ -68,7 +67,7 @@ class Tessera # def to make sure when to use the tessera. The following conditions must NOT be true: hidden, invisible, cooldown active, hands full, not allowed scripts running and not standing in rooms that are not allowed. def should_use_tessera? - !(hidden? || invisible? || tessera_on_cooldown? || hands_full? || running_no_use_scripts? || inside_no_use_room? || DRSkill.getxp('Trading') > @tessera_mindstates) + !(hidden? || invisible? || tessera_on_cooldown? || hands_full? || running_no_use_scripts? || inside_no_use_room?) end # def for checking if no_use_scripts (from yaml) are running. Used in should_use_tessera?.