(destRoomId int)
| 167 | }) |
| 168 | } |
| 169 | func (p ScriptParty) MoveRoom(destRoomId int) { |
| 170 | p.each(func(a ScriptActor) { |
| 171 | a.MoveRoom(destRoomId) |
| 172 | }) |
| 173 | } |
| 174 | func (p ScriptParty) AddEventLog(category string, message string) { |
| 175 | p.each(func(a ScriptActor) { |
| 176 | a.AddEventLog(category, message) |