Skip to content

Commit

Permalink
Move GBMB to Force Menu
Browse files Browse the repository at this point in the history
  • Loading branch information
jbot-42 authored and jacob1 committed Sep 18, 2015
1 parent f5774ad commit 146fc4d
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/simulation/elements/GBMB.cpp
Expand Up @@ -6,9 +6,9 @@ Element_GBMB::Element_GBMB()
Name = "GBMB";
Colour = PIXPACK(0x1144BB);
MenuVisible = 1;
MenuSection = SC_EXPLOSIVE;
MenuSection = SC_FORCE;
Enabled = 1;

Advection = 0.6f;
AirDrag = 0.01f * CFDS;
AirLoss = 0.98f;
Expand All @@ -18,21 +18,21 @@ Element_GBMB::Element_GBMB()
Diffusion = 0.00f;
HotAir = 0.000f * CFDS;
Falldown = 1;

Flammable = 0;
Explosive = 0;
Meltable = 0;
Hardness = 20;

Weight = 30;

Temperature = R_TEMP-2.0f +273.15f;
HeatConduct = 29;
Description = "Gravity bomb. Sticks to the first object it touches then produces a strong gravity push.";

State = ST_NONE;
Properties = TYPE_PART|PROP_LIFE_DEC|PROP_LIFE_KILL_DEC;

LowPressure = IPL;
LowPressureTransition = NT;
HighPressure = IPH;
Expand All @@ -41,7 +41,7 @@ Element_GBMB::Element_GBMB()
LowTemperatureTransition = NT;
HighTemperature = ITH;
HighTemperatureTransition = NT;

Update = &Element_GBMB::update;
Graphics = &Element_GBMB::graphics;
}
Expand Down

0 comments on commit 146fc4d

Please sign in to comment.