Skip to content

Commit

Permalink
Some yummy linebreaks for flavor text
Browse files Browse the repository at this point in the history
  • Loading branch information
caligari87 committed Jun 20, 2018
1 parent a5b9330 commit 9a374ed
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions zscript.zsc
Original file line number Diff line number Diff line change
Expand Up @@ -160,22 +160,22 @@ class HDScav_FoodEater : HDWoundFixer {
action string RandomFlavor() {
switch(random(0,5)) {
case 0:
return "'Chili w/Beans'\nThe cheese will back you up for a month...";
return "'Chili w/Beans'\n\nThe cheese will back you up for a month...\n";
break;
case 1:
return "'Shredded Barbeque Beef'\nAnd 'Carb Fortified Beverage Powder'\nto wash it down.";
return "'Shredded Barbeque Beef'\n\nAnd 'Carb Fortified Beverage Powder'\nto wash it down.\n";
break;
case 2:
return "'Meatballs in Marinara Sauce'\nIts-a me, Doomguy!";
return "'Meatballs in Marinara Sauce'\n\nIts-a me, Doomguy!\n";
break;
case 3:
return "'Chili and Macaroni'\nOh boy, that means Skittles for desert!";
return "'Chili and Macaroni'\n\nOh boy, that means Skittles for desert!\n";
break;
case 4:
return "'Spinach Mushrooms & Cream Sauce Fettuccine'\nMmm, eatin' fancy in the warzone tonight.";
return "'Spinach Mushrooms & Cream Sauce Fettuccine'\n\nMmm, eatin' fancy in the warzone tonight.\n";
break;
case 5:
return "' Rib Shaped BBQ Pork Patty'\nJust like mamma used to make back home...";
return "' Rib Shaped BBQ Pork Patty'\n\nJust like mamma used to make back home...\n";
break;
}
return "'Generic Military Ration'";
Expand Down

0 comments on commit 9a374ed

Please sign in to comment.