|
@@ -1109,14 +1109,20 @@ 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:
|
|
|
+ elif self.dense:
|
|
|
+ t = []
|
|
|
+ for d in self.dense:
|
|
|
+ if d['warps'] != 1:
|
|
|
+ t.append(d['sector'])
|
|
|
+ if not t:
|
|
|
log.msg("No Sectors Found except one move sector!")
|
|
|
self.send2player("Find a new area for me to look at!")
|
|
|
self.deactivate()
|
|
@@ -1142,11 +1148,6 @@ class ScriptExplore(object):
|
|
|
|
|
|
|
|
|
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
|
|
|
|
|
|
|