|
@@ -997,6 +997,7 @@ class ScriptExplore(object):
|
|
|
self.clear = []
|
|
|
self.highsector = 0
|
|
|
self.highwarp = 0
|
|
|
+ self.oneMoveSector = False
|
|
|
self.times = 0
|
|
|
self.maxtimes = 0
|
|
|
|
|
@@ -1104,10 +1105,21 @@ class ScriptExplore(object):
|
|
|
|
|
|
|
|
|
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
if not self.dense:
|
|
|
log.msg("No New Sectors Found!")
|
|
|
self.send2player("Find a new area for me to search in!")
|
|
|
self.deactivate()
|
|
|
+ elif len(self.dense) == 1:
|
|
|
+ if self.dense[0]['warps'] == 1:
|
|
|
+ log.msg("No Sectors Found except one move sector!")
|
|
|
+ self.send2player("Find a new area for me to look at!")
|
|
|
+ self.deactivate()
|
|
|
|
|
|
for d in self.dense:
|
|
|
if not d['anom']:
|