aboutsummaryrefslogtreecommitdiff
path: root/internal/game/core_hacking.go
diff options
context:
space:
mode:
authorhistoria <[not public]>2026-06-22 04:24:11 -0400
committerhistoria <[not public]>2026-06-22 04:24:11 -0400
commit5b9a75a1520a198c9c6b1f1f55e05c9f4aab5629 (patch)
tree18f500ca3492ba206a3f66e2f01146b05a1675b2 /internal/game/core_hacking.go
parent7f07c7236578e1a7bcef0282ff9d7f5bf8c7c045 (diff)
downloadthehouseoficarus-5b9a75a1520a198c9c6b1f1f55e05c9f4aab5629.tar.gz
feat: map now only reveals with exploration. players can set custom map symbols.
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 {