mirror of
https://github.com/minetest/minetest.git
synced 2024-11-27 10:03:45 +01:00
Fix inventory segfault when rollback recording is disabled
This commit is contained in:
parent
c9ed379e39
commit
fd7ec2da91
@ -355,7 +355,7 @@ void IMoveAction::apply(InventoryManager *mgr, ServerActiveObject *player, IGame
|
|||||||
/*
|
/*
|
||||||
Record rollback information
|
Record rollback information
|
||||||
*/
|
*/
|
||||||
if(!ignore_rollback)
|
if(!ignore_rollback && gamedef->rollback())
|
||||||
{
|
{
|
||||||
IRollbackReportSink *rollback = gamedef->rollback();
|
IRollbackReportSink *rollback = gamedef->rollback();
|
||||||
|
|
||||||
@ -628,7 +628,7 @@ void IDropAction::apply(InventoryManager *mgr, ServerActiveObject *player, IGame
|
|||||||
/*
|
/*
|
||||||
Record rollback information
|
Record rollback information
|
||||||
*/
|
*/
|
||||||
if(!ignore_src_rollback)
|
if(!ignore_src_rollback && gamedef->rollback())
|
||||||
{
|
{
|
||||||
IRollbackReportSink *rollback = gamedef->rollback();
|
IRollbackReportSink *rollback = gamedef->rollback();
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user