Skip to content

Commit

Permalink
Merge branch 'master' of /media/Field/Software/minetest-queatz/minete…
Browse files Browse the repository at this point in the history
…st-sqlite/.. into sqlite-map
  • Loading branch information
Queatz committed Sep 2, 2011
2 parents 99de37f + ad795c9 commit e3c58ef
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
9 changes: 9 additions & 0 deletions doc/changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,15 @@ Minetest-c55 changelog
This should contain all the major changes.
For minor stuff, refer to the commit log of the repository.

X:
- Ladders
- Lava
- /me chat command
- Slightly better looking inventory (transparency)
- Fix the long-existed PeerNotFound loop bug
- Some translations and localization-related fixes
- Lots of small fixes, once again

2011-07-31_3:
- Fixes a bug that made the server to deny non-empty passwords from players connecting the first time

Expand Down
2 changes: 1 addition & 1 deletion src/content_nodemeta.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ bool FurnaceNodeMetadata::step(float dtime)
If there is no source item or source item is not cookable,
or furnace became overloaded, stop loop.
*/
if((m_fuel_time < m_fuel_totaltime || dst_list->roomForCookedItem(src_item) == false)
if((m_fuel_time < m_fuel_totaltime || (src_item && dst_list->roomForCookedItem(src_item) == false))
&& (src_item == NULL || m_src_totaltime < 0.001))
{
m_step_accumulator = 0;
Expand Down
2 changes: 2 additions & 0 deletions src/inventory.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -581,6 +581,8 @@ bool InventoryList::roomForItem(const InventoryItem *item)

bool InventoryList::roomForCookedItem(const InventoryItem *item)
{
if(!item)
return false;
const InventoryItem *cook = item->createCookResult();
if(!cook)
return false;
Expand Down

0 comments on commit e3c58ef

Please sign in to comment.