Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
illuna-minetest
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Illuna-Minetest
illuna-minetest
Commits
e3c58eff
Commit
e3c58eff
authored
13 years ago
by
JacobF
Browse files
Options
Downloads
Plain Diff
Merge branch 'master' of /media/Field/Software/minetest-queatz/minetest-sqlite/.. into sqlite-map
parents
99de37ff
ad795c9f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
doc/changelog.txt
+9
-0
9 additions, 0 deletions
doc/changelog.txt
src/content_nodemeta.cpp
+1
-1
1 addition, 1 deletion
src/content_nodemeta.cpp
src/inventory.cpp
+2
-0
2 additions, 0 deletions
src/inventory.cpp
with
12 additions
and
1 deletion
doc/changelog.txt
+
9
−
0
View file @
e3c58eff
...
@@ -3,6 +3,15 @@ Minetest-c55 changelog
...
@@ -3,6 +3,15 @@ Minetest-c55 changelog
This should contain all the major changes.
This should contain all the major changes.
For minor stuff, refer to the commit log of the repository.
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:
2011-07-31_3:
- Fixes a bug that made the server to deny non-empty passwords from players connecting the first time
- Fixes a bug that made the server to deny non-empty passwords from players connecting the first time
...
...
This diff is collapsed.
Click to expand it.
src/content_nodemeta.cpp
+
1
−
1
View file @
e3c58eff
...
@@ -293,7 +293,7 @@ bool FurnaceNodeMetadata::step(float dtime)
...
@@ -293,7 +293,7 @@ bool FurnaceNodeMetadata::step(float dtime)
If there is no source item or source item is not cookable,
If there is no source item or source item is not cookable,
or furnace became overloaded, stop loop.
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
))
&&
(
src_item
==
NULL
||
m_src_totaltime
<
0.001
))
{
{
m_step_accumulator
=
0
;
m_step_accumulator
=
0
;
...
...
This diff is collapsed.
Click to expand it.
src/inventory.cpp
+
2
−
0
View file @
e3c58eff
...
@@ -581,6 +581,8 @@ bool InventoryList::roomForItem(const InventoryItem *item)
...
@@ -581,6 +581,8 @@ bool InventoryList::roomForItem(const InventoryItem *item)
bool
InventoryList
::
roomForCookedItem
(
const
InventoryItem
*
item
)
bool
InventoryList
::
roomForCookedItem
(
const
InventoryItem
*
item
)
{
{
if
(
!
item
)
return
false
;
const
InventoryItem
*
cook
=
item
->
createCookResult
();
const
InventoryItem
*
cook
=
item
->
createCookResult
();
if
(
!
cook
)
if
(
!
cook
)
return
false
;
return
false
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment