ThunderousSkies: Fix crash because of FuseTime() overriding the local FuseTime

alut-include-path
Fulgen301 2017-02-18 15:07:00 +01:00
parent cebe111429
commit 1797589ff5
1 changed files with 6 additions and 6 deletions

View File

@ -2,14 +2,14 @@
#appendto Dynamite
local fast;
func Initialize()
{
fast = 0;
this.fast = 0;
_inherited(...);
}
func MakeFast(int f) { fast = f; }
func FuseTime() { return 140 - fast; }
func MakeFast(int f)
{
this.fast = f;
this.FuseTime = 140 - this.fast;
}