changelog.txt 3.2 KB

123456789101112131415161718192021222324252627282930
  1. Initial Clump:
  2. +New group "clump_fall_node" created that applies to nodes that aren't, air, ignore, or part of the groups falling_node, attached_node, or liquid
  3. +Set the above + to occur after every other mod has registered nodes, so that nodes from every mod will be affected
  4. +Added a check between two points for clump_fall_nodes that are susceptible to falling
  5. +Created a seperate clump_fall function that performes the above + once every second
  6. +It also, upon looping, changes the area to be checked in response to the locations of the last nodes that fell
  7. +Furthermore, it removes nodes to fall and spawns the appropriate falling_nodes in their place
  8. +Made a method to spawn a falling node while also automatically giving it the node and metadata information about the node that is trying to fall
  9. +This clump_fall function has lastly been registered to occur automatically on nodes that are punched, broken, and placed
  10. +Beds have been excluded from the clump_fall_node group due to major issues with how they fall
  11. +Documented most of the above
  12. Clump The Second:
  13. +Created this changelog
  14. +Added an actual description to the documentation of spawn_falling_node (whoops), also revisioned a few other random pieces of documentation
  15. +Whenever a node falls, all nearby falling_nodes and attached_nodes are updated to prevent such nodes from floating after clump_fall_nodes fall
  16. +Clump Fall Nodes no longer repeatedly try to fall when placed on top of nodes in the falling_node group like sand or gravel
  17. +Split a majority of init.lua into functions.lua and override.lua, with clumpfall as the global variable
  18. *Renamed function clump_fall to do_clump_fall to be less confusable with global clumpfall
  19. -Re-included beds in the clump_fall_node group
  20. +Made override_entity method and used it to fix issue where sand can land on a floating block without causing that floating block to fall by making falling nodes punch themselves after landing
  21. *Moved that override_entity method to the entitycontrol mod and added a dependency and depends.txt for that
  22. *Turned the individual checks inside of the check_group_for_fall function into the function check_individual_for_fall, so it can be used for other purposes
  23. +Heavily modified behavior of objects that are in both clump_fall_node and bed groups:
  24. +You can now fix half beds by punching them (Well, unless they're the untouchable top parts, for now...)
  25. +More importantly, beds' on_destruct method has been fixed to account for the possibility of half beds being destroyed.
  26. +Also, beds are more thorough when checking their other halves, so a destroyed bed will only destroy its own other half, given that such exists
  27. +Added functions that will add to existing on_dig, on_place, and on_punch events instead of replacing them completely. This fixes issues with nodes like Mesecon Switches that will either turn on/off when punched, or will fall down when punched and without support. Now, these kinds of nodes properly do both.
  28. *Overrides the previously changed on_place in this mod now change the after_place_node event because that gives a pos argument usable for the clump_fall function