aboutsummaryrefslogtreecommitdiff
path: root/internal/game/core_hacking.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/game/core_hacking.go')
-rw-r--r--internal/game/core_hacking.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/internal/game/core_hacking.go b/internal/game/core_hacking.go
index 3457728..b270593 100644
--- a/internal/game/core_hacking.go
+++ b/internal/game/core_hacking.go
@@ -57,15 +57,15 @@ func (g *Game) endHacking(sess *net.Session, p *player.Player, completed bool, w
if completed && won {
xp = hacking.CalcXP(tDef.BaseXPWin, hs.Level, hs.ReqLevel)
- sess.WriteLine("\nConnection terminated. Contract complete.")
+ sess.WriteLine("Connection terminated. Contract complete.")
} else if completed {
xp = hacking.CalcXP(tDef.BaseXPLose, hs.Level, hs.ReqLevel)
- sess.WriteLine("\nConnection lost.")
+ sess.WriteLine("Connection lost.")
} else if hs.Started {
xp = hacking.CalcXP(tDef.BaseXPLose, hs.Level, hs.ReqLevel)
- sess.WriteLine("\nYou jack out of the terminal.")
+ sess.WriteLine("You jack out of the terminal.")
} else {
- sess.WriteLine("\nYou jack out of the terminal.")
+ sess.WriteLine("You jack out of the terminal.")
}
if won {