function isResourceDestinationOrder(room: Room, order: TransporterOrder): order is ResourceDestinationTask {
    if ('type' in order && room.destinationDispatcher.hasProvider(order.type)) {
        return true;
    }