UWCharacter.GetFedStatus C# (CSharp) Method

GetFedStatus() public method

public GetFedStatus ( ) : string
return string
    public string GetFedStatus()
    {
        //Returns the string representing the players hunger.
        /*
        000~001~104~starving
        000~001~105~famished
        000~001~106~very hungry
        000~001~107~hungry
        000~001~108~peckish
        000~001~109~fed
        000~001~110~well fed
        000~001~111~full
        000~001~112~satiated
        */
        return StringController.instance.GetString (1,104+((FoodLevel)/4));
    }