Remove parachute early if hog is inside land
Fixes a bug: When you used parachute right after using a parachute to dig inside land, you might become stuck. Reported here: https://hedgewars.org/node/9035
//! PhysFS bindings for Rust
#![deny(missing_docs)]
extern crate libc;
pub use physfs::*;
pub use physfs::file::*;
/// PhysFS bindings
mod physfs;
/// Definitions for the PhysFS primitives
mod primitives;