Skip to content

Commit

Permalink
Average smaller meals to compensate for more spawns
Browse files Browse the repository at this point in the history
  • Loading branch information
caligari87 committed Jun 29, 2018
1 parent 6a1ed81 commit 10f2a9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hdscav_zscript/hunger/messkit.zsc
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ class HDScav_MessKit : HDWoundFixer {
if(countinv("HDScav_Ration") > 0) {
if(invoker.mealSize <= 0 && invoker.rationOpen == false) {
A_PlaySound("imp/melee");
invoker.mealSize = random(10,15)*50;
invoker.mealSize = random(8,12)*50;
invoker.rationOpen = true;
invoker.flavor = RandomFlavor();
if(getcvar("hd_helptext")) { A_WeaponMessage(string.format("%s", invoker.flavor), 175); }
Expand Down

0 comments on commit 10f2a9c

Please sign in to comment.