diff options
| author | Simon Robertshaw <simon@hardwired.org.uk> | 2012-08-25 14:53:27 (GMT) |
|---|---|---|
| committer | Simon Robertshaw <simon@hardwired.org.uk> | 2012-08-25 15:29:27 (GMT) |
| commit | 082072a05e7847ed3c226495f9d613e11f768306 (patch) | |
| tree | 11b5f1eb0bf059df0a494aff86d2662ff7c24ecf /src/simulation/elements/FIRE.cpp | |
| parent | 6ace7bd26fe8f274d911beab143c2743f03af8cf (diff) | |
| download | powder-082072a05e7847ed3c226495f9d613e11f768306.zip powder-082072a05e7847ed3c226495f9d613e11f768306.tar.gz | |
OPS: Fix byte order when unpacking 4 byte tmp fields
Diffstat (limited to 'src/simulation/elements/FIRE.cpp')
| -rw-r--r-- | src/simulation/elements/FIRE.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/simulation/elements/FIRE.cpp b/src/simulation/elements/FIRE.cpp index 342582a..0a98149 100644 --- a/src/simulation/elements/FIRE.cpp +++ b/src/simulation/elements/FIRE.cpp @@ -27,7 +27,7 @@ Element_FIRE::Element_FIRE() Weight = 2; Temperature = R_TEMP+400.0f+273.15f; - HeatConduct = 1; + HeatConduct = 88; Description = "Ignites flammable materials. Heats air."; State = ST_GAS; @@ -199,4 +199,4 @@ int Element_FIRE::graphics(GRAPHICS_FUNC_ARGS) return 0; } -Element_FIRE::~Element_FIRE() {} +Element_FIRE::~Element_FIRE() {}
\ No newline at end of file |
