All public logs
Combined display of all available logs of Ylvapedia. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 12:24, 22 December 2024 Inno talk contribs moved page Code Analysis/Food Effect to Elin:Code Analysis/Food Effect (Wrong namespace...can someone delete this redirect page?)
- 12:23, 22 December 2024 Inno talk contribs created page Code Analysis/Food Effect (Created page with "{{Spoiler}} '''Food Effect''' is one of the most important part of Elin and Elona. As the saying goes "you are what you eat." We shall put the entire code here, and track any changes affecting the biggest part of the game: cooking and eating. == The main effect of foods == === Human or not human? === <syntaxhighlight lang="c#" line="1"> public static bool IsHumanFlesh(Thing food) { if (food.HasTag(CTAG.notHumanMeat)) { return false; } if (food.id == "d...")