Skip to content
Snippets Groups Projects
  1. Feb 01, 2013
    • Jürgen Doser's avatar
      Remove use of operator[] on a std::map, so no spurious elements get inserted. (fixes #464) · 9ebf1fd3
      Jürgen Doser authored
      All uses of operator[] in guiConfigureWorld.cpp have been replaced
      with .find() operations.
      
      In some places, operator[] had been called with mod names of "Add-Ons"
      or "N/A", which would insert a default-constructed ModSpec into the
      list of add-on mods. In other places, the use of operator[] was safe
      now, but it probably is safer for future changes to use .find()
      everywhere.
      9ebf1fd3
  2. Jan 27, 2013
  3. Jan 26, 2013
  4. Jan 23, 2013
  5. Jan 22, 2013
  6. Jan 21, 2013
  7. Jan 14, 2013
  8. Jan 12, 2013
    • Jürgen Doser's avatar
      fix integer overflow (fixes #414) · 183c81b5
      Jürgen Doser authored
      liquid_kind was declared as an u8, but used to hold a content_t value, which is delcared to be a u16.
      
      changing this fixes (at least for me) the problem reported in bug #414.
      183c81b5
  9. Jan 11, 2013
    • Jürgen Doser's avatar
      fixes node timer bug (fixes #407). · 076f13cc
      Jürgen Doser authored
      Previously, when a block was activated, on_timer callbacks where
      called with the relative position of the node inside the block,
      instead of the absolute position of the node.
      076f13cc
  10. Jan 07, 2013
Loading