Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(handle_regular_status_updates) Stops body build changing for synthetics and undead #10641

Conversation

Moscowchief
Copy link
Contributor

@Moscowchief Moscowchief commented Oct 4, 2023

Синты не голодают.

fix #10635

Чейнджлог
🆑
bugfix: Синты не голодают.
/🆑
  • Pull Request полностью завершен, мне не нужна помощь чтобы его закончить.
  • Я внимательно прочитал все свои изменения и багов в них не нашел.
  • Я запускал сервер со своими изменениями локально и все протестировал.
  • Я ознакомился c Guide to Contribute.

@Moscowchief Moscowchief requested a review from a team as a code owner October 4, 2023 20:21
@github-actions github-actions bot added the 📜 Требуется CL У ПРа отсутствует чейнджлог или он с ошибками. label Oct 4, 2023
change_body_build(new_body_build)
to_chat(src, SPAN("warning", "You've [nutrition_problem == OVEREATING ? "gained" : "lost"] some weight!"))
nutrition_problem = FALSE
if(!isSynthetic(src) && !isundead(src))
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Думаю ты это хотел написать. ИЛИ вместо И

Suggested change
if(!isSynthetic(src) && !isundead(src))
if(!isSynthetic(src) || !isundead(src))

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

И вообще не плоди nesting conditions

Suggested change
if(!isSynthetic(src) && !isundead(src))
if(isSynthetic(src) || isundead(src))
return

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

А это точно не сломает половину билда?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Так ИЛИ это же только если потом ретерн будет стоять, так что в данном контексте И нужно. А чтобы так ретерн поставить надо же переставлять весь лайф таким образом, чтобы оно не сломало ниче лишнее.

@github-actions github-actions bot added 📜 Есть CL Чейнджлог в наличии и не содержит ошибок and removed 📜 Требуется CL У ПРа отсутствует чейнджлог или он с ошибками. labels Oct 4, 2023
@Moscowchief Moscowchief changed the title fix(handle_regular_status_updates) Stops nutrition decreasing for synthetics fix(handle_regular_status_updates) Stops body build changing for synthetics and undead Oct 10, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
📜 Есть CL Чейнджлог в наличии и не содержит ошибок
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Синты худеют.
3 participants