Cazsius / Spice-of-Life-Carrot-Edition

Motivating people to explore new foods with the carrot, not the stick.
GNU Lesser General Public License v2.1
15 stars 43 forks source link

Можно ли получить больше сердец? #109

Closed KorumoVago227 closed 3 years ago

KorumoVago227 commented 3 years ago

image Выдаёт такую ошибку,как то можно починить?

juliand665 commented 3 years ago

This is not an error. The mod has been configured to not give you any more hearts than you've already received. You can change this:

<minecraft folder>/saves/<world folder>/serverconfig/solcarrot-server.toml:

[milestones]
    # ...
    milestones = [5, 10, 15, 20, 25] # <- change this
    # ...
# ...

For example, you could change it to this:

    milestones = [5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55, 60, 65, 70, 75, 80, 85, 90, 95, 100]

You could also change heartsPerMilestone so you don't get as many hearts. Or you could also change it to [10, 20, 30, 40, 50, 60, 70, 80, 90, 100], or anything you want.

KorumoVago227 commented 3 years ago

Это не ошибка. Мод настроен так, чтобы не давать вам сердец больше, чем вы уже получили. Вы можете изменить это:

<minecraft folder>/saves/<world folder>/serverconfig/solcarrot-server.toml:

[ вехи ]
   # ... 
  вехи = [ 5 , 10 , 15 , 20 , 25 ] # <- изменить это 
  # ... 
# ...

Например, вы можете изменить его на это:

  вехи = [ 5 , 10 , 15 , 20 , 25 , 30 , 35 , 40 , 45 , 50 , 55 , 60 , 65 , 70 , 75 , 80 , 85 , 90 , 95 , 100 ]

Вы также можете измениться, heartsPerMilestoneчтобы не получить столько сердец. Или вы также можете изменить его на [10, 20, 30, 40, 50, 60, 70, 80, 90, 100]или что угодно.

Thank you