(msg string, isQuiet bool, excludeUserIds ...int)
| 463 | } |
| 464 | |
| 465 | func (r ScriptRoom) SendTextToExits(msg string, isQuiet bool, excludeUserIds ...int) { |
| 466 | |
| 467 | msg = roomTextWrap.Wrap(msg) |
| 468 | |
| 469 | r.roomRecord.SendTextToExits(msg, isQuiet, excludeUserIds...) |
| 470 | } |
| 471 | |
| 472 | func (r ScriptRoom) RepeatSpawnItem(itemId int, roundFrequency int, containerName ...string) bool { |
| 473 | return r.roomRecord.RepeatSpawnItem(itemId, roundFrequency, containerName...) |
no test coverage detected