This commit is contained in:
2026-01-16 16:08:30 +01:00
parent bc126ffcd8
commit f07f089147
962 changed files with 30869 additions and 25057 deletions

View File

@@ -125,7 +125,7 @@ server {
# Rounding mode used on the hunger value of foods
# Valid options: 'round', 'floor', 'ceiling'
S:food.hunger.rounding.mode=ceiling
S:food.hunger.rounding.mode=floor
# Uses the EvalEx expression parser
# See: https://github.com/uklimaschewski/EvalEx for syntax/function documentation
@@ -146,7 +146,7 @@ server {
# total_food_groups : The total number of enabled food groups
# exact_count : The number of times the food (ignoring food groups) has been eaten within the food history
#
S:food.modifier.formula=MAX(IF(count>=4 && distinct_food_groups_eaten<=5,(1 - (count - 4)/8),1), IF((count - 8) < food_hunger_value, 0.05, 0))
S:food.modifier.formula=MAX(IF(count>=4 && distinct_food_groups_eaten<=5,(1 - (count - 4)/8),1), IF((count - 8) < food_hunger_value, 1/MAX(food_hunger_value,2), 0))
# If true, a food journal will be given to each player as a starting item
B:give.food.journal.as.starting.item=false