| 29 | } |
| 30 | |
| 31 | void ItemCustomBurn(ItemInfo* item, const Vector3& color1, const Vector3& color2, int timeout) |
| 32 | { |
| 33 | item->Effect.Type = EffectType::Custom; |
| 34 | item->Effect.Count = timeout; |
| 35 | item->Effect.LightColor = color1; |
| 36 | item->Effect.PrimaryEffectColor = color1; |
| 37 | item->Effect.SecondaryEffectColor = color2; |
| 38 | } |
| 39 | |
| 40 | void ItemElectricBurn(ItemInfo* item, int timeout) |
| 41 | { |
no outgoing calls
no test coverage detected