Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Drop useless plasma fuel code #19356

Merged
merged 1 commit into from Nov 20, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 2 additions & 6 deletions src/vehicle.cpp
Expand Up @@ -49,7 +49,6 @@ static const itype_id fuel_type_gasoline("gasoline");
static const itype_id fuel_type_diesel("diesel");
static const itype_id fuel_type_battery("battery");
static const itype_id fuel_type_plutonium("plut_cell");
static const itype_id fuel_type_plasma("plasma");
static const itype_id fuel_type_water("water_clean");
static const itype_id fuel_type_muscle("muscle");
static const std::string part_location_structure("structure");
Expand Down Expand Up @@ -2842,7 +2841,7 @@ int vehicle::drain (const itype_id & ftype, int amount) {
}
}

if( ftype != fuel_type_battery && ftype != fuel_type_plasma ) {
if( ftype != fuel_type_battery ) {
invalidate_mass();
}

Expand Down Expand Up @@ -3043,8 +3042,6 @@ void vehicle::noise_and_smoke( double load )
mufflesmoke += j;
}
pwr = (cur_pwr*15 + max_pwr*3 + 5) * muffle;
} else if(is_engine_type(e, fuel_type_plasma)) {
pwr = (cur_pwr*9 + 1) * muffle;
} else if(is_engine_type(e, fuel_type_battery)) {
pwr = cur_pwr*3;
} else if(is_engine_type(e, fuel_type_muscle)) {
Expand Down Expand Up @@ -5350,8 +5347,7 @@ bool vehicle::explode_fuel( int p, damage_type type )

static const std::map<itype_id, fuel_explosion> explosive_fuels = {{
{ fuel_type_gasoline, { 2, 5, 1.0f, true, 0.1f } },
{ fuel_type_diesel, { 20, 1000, 0.2f, false, 0.1f } },
{ fuel_type_plasma, { 1, 2, 1.4f, false, 1.0f } }
{ fuel_type_diesel, { 20, 1000, 0.2f, false, 0.1f } }
}};

const auto iter = explosive_fuels.find( ft );
Expand Down