Terraria.ModLoader.ModItem.AnglerQuestChat C# (CSharp) Method

AnglerQuestChat() public method

public AnglerQuestChat ( string &description, string &catchLocation ) : void
description string
catchLocation string
return void
        public virtual void AnglerQuestChat(ref string description, ref string catchLocation)
        {
        }

Usage Example

Exemplo n.º 1
0
        internal static void AnglerChat(bool turningInFish, bool anglerQuestFinished, int type, ref string chat, ref string catchLocation)
        {
            ModItem modItem = GetItem(type);

            if (modItem != null && !Main.anglerQuestFinished && !turningInFish)
            {
                modItem.AnglerQuestChat(ref chat, ref catchLocation);
            }
            foreach (GlobalItem globalItem in globalItems)
            {
                globalItem.AnglerChat(turningInFish, anglerQuestFinished, type, ref chat, ref catchLocation);
            }
        }