Send message to owner player in yellow color.
- Возвращает
void
item_stone.MessageToOwnerAction("Some Action Message");
См. определение в файле ItemBase.c строка 2650
2651 {
2652 PlayerBase player = PlayerBase.Cast(this.GetHierarchyRootPlayer());
2653
2654 if (player)
2655 {
2656 player.MessageAction(text);
2657 }
2658 }