What follows are many functions graduated from the actor level to the party level
(msg string)
| 121 | // |
| 122 | |
| 123 | func (p ScriptParty) SendText(msg string) { |
| 124 | p.each(func(a ScriptActor) { |
| 125 | a.SendText(msg) |
| 126 | }) |
| 127 | } |
| 128 | |
| 129 | func (p ScriptParty) SetResetRoomId(roomId int) { |
| 130 | p.each(func(a ScriptActor) { |