Heat conduct problem

  • Sussy_Tiago
    1st December Member 0 Permalink

    I have a mod that has a solid named Super heat conductor and its heat conduct property is at 255 however it still conducts slower than Rapid heat conductor which only has 251 heat conductivity

     

    heres the code for the Super heat conductor

    local elemid3=elements.allocate("WILLMOD","SHEC")
    elem.element(elemid3,elem.element(elem.DEFAULT_PT_HEAC))
    elements.property(elemid3,"HighTemperatureTransition",elem.NT)
    elem.property(elemid3,"HeatConduct",255)
    elem.property(elemid3,"Name","SHEC")
    elem.property(elemid3,"Description","Super Heat Conductor. Maximum heat conduction, And doesnt melt with lighting.")
  • EnganK
    2nd December Member 0 Permalink
    HEAC uses a special code to transfer heat over a greater distance than normal to simulate significantly greater thermal conductivity (similar to how GOLD, PTNM and SLCN implement increased SPRK speed). To reproduce this behavior, you need to reproduce this code.