Skip to content

Commit dbc059f

Browse files
committed
SRS
1 parent 742eec9 commit dbc059f

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

AbsShip.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,6 @@ def repair(self, game):
142142

143143

144144
def short_range_scan(self, game):
145-
from MapGame import Sectors
146145

147146
if self.short_range_scan_damage > 0:
148147
game.display(Quips.jibe_damage('Short Ranged Scanners'))

MapGame.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
from AbsShip import KlingonShip
66
from Points import Destination
77
from Quadrant import Quadrant
8-
from Sectors import Sectors
98

109
import MapSparse
1110

Quadrant.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def display_area(game, quad):
3636
game.enterprise.condition = "YELLOW"
3737

3838
sb = " a b c d e f g h \n"
39-
sb += f" -=--=--=--=--=--=--=--=- Region: {quad.name}\n"
39+
sb += f" -=--=--=--=--=--=--=--=- Quadrant: {quad.name}\n"
4040
info = list()
4141
info.append(f" Area: [{quad.number}]\n")
4242
info.append(f" Hazzards: [{quad.stars + len(quad.klingons)}]\n")

README.rst

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,18 @@
11
So far:
22

3-
o Converted from Python 2, to Python 3.
3+
* Converted from Python 2, to Python 3.
44

5-
o Simplifying coordinate calculations - kudos for the idea!
5+
* Simplifying coordinate calculations - kudos for the idea!
66

7-
o Added random event Quips – should make the game a tad more ‘NPC’?
7+
* Added random event Quips – should make the game a tad more ‘NPC’?
88

9-
o Heavily re-factored for growth, testing, re-use, and maintenance using modern Python.
9+
* Heavily re-factored for growth, testing, re-use, and maintenance using modern Python.
1010

1111

1212
Original authors did an excellent job here - made the modernization a WHOLE LOT easier!
1313

14+
:monocle_face:
15+
1416
-- Nagy
1517

1618
Original:

0 commit comments

Comments
 (0)