Renamed "delete" function in "Remote control 4" exercise (colobot/colobot#710)

coolant-mod
krzys-h 2016-02-13 19:49:01 +01:00
parent b2acca97ae
commit be4a4fd66a
1 changed files with 2 additions and 2 deletions

View File

@ -29,7 +29,7 @@ public class exchange
}
// Delete an order.
synchronized void delete()
synchronized void remove()
{
m_order.m_type = nan;
}
@ -63,6 +63,6 @@ extern void object::Slave4( )
{
message("Unknown order");
}
list.delete();
list.remove();
}
}