diff --git a/zscript.zsc b/zscript.zsc index b11dfc29..b5b53559 100644 --- a/zscript.zsc +++ b/zscript.zsc @@ -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'";