Browse Source

Increasing STARVATION default value

psy 5 years ago
parent
commit
23564f1035
1 changed files with 2 additions and 2 deletions
  1. 2 2
      core/main.py

+ 2 - 2
core/main.py

@@ -3676,9 +3676,9 @@ class UFONet(object):
                 try:
                     self.options.nuke = int(nuke)
                 except:
-                    self.options.nuke = 100 # default NUKE requests
+                    self.options.nuke = 10000 # default NUKE requests
                 if self.options.nuke < 1:
-                    self.options.nuke = 100
+                    self.options.nuke = 10000
                 self.instance = NUKE() # instance main class for NUKE operations
                 t = threading.Thread(target=self.instance.attacking, args=(target, self.options.nuke)) # NUKE using threads
                 t.daemon = True # extra weapons are threaded as daemons