Send message to owner player in yellow color.
- Возвращает
void
item_stone.MessageToOwnerAction("Some Action Message");
См. определение в файле ItemBase.c строка 2720
2721 {
2722 PlayerBase player = PlayerBase.Cast(this.GetHierarchyRootPlayer());
2723
2724 if (player)
2725 {
2726 player.MessageAction(text);
2727 }
2728 }