Example #1
0
 public static string GetWeightAndBulkTip(this ThingDef def, int count = 1)
 {
     return(def.LabelCap +
            (count != 1 ? " x" + count : "") +
            "\n" + def.GetWeightTip(count) + "\n" + def.GetBulkTip(count));
 }
 public static string GetWeightAndBulkTip(this ThingDef def, int count = 1)
 {
     return(def.description +
            (count != 1 ? " x" + count : string.Empty) +
            "\n" + def.GetWeightTip(count) + "\n");
 }