aboutsummaryrefslogtreecommitdiff
path: root/internal/game/action_steal.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/game/action_steal.go')
-rw-r--r--internal/game/action_steal.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/internal/game/action_steal.go b/internal/game/action_steal.go
index dac90f2..5347c2a 100644
--- a/internal/game/action_steal.go
+++ b/internal/game/action_steal.go
@@ -221,6 +221,14 @@ func (g *Game) startSteal(sess *net.Session, p *player.Player, targetType string
sess.WriteLine(fmt.Sprintf("You attempt to steal from the %s...", targetName))
p.ActionState = &ActionState{Type: ActionStealing, TargetName: targetName}
+ if g.Hub != nil {
+ for _, other := range g.Hub.PlayersInRoom(p.RoomID) {
+ if other != sess && other.Player != nil {
+ other.WriteLine(g.colorize(other, "broadcast", fmt.Sprintf("\n%s glances around the room.", p.Name)))
+ }
+ }
+ }
+
p.Action = &action.Action{
Type: "steal",
TargetID: targetID,