Skylands: Fix "free wood" appearing in front of Sawmill

install-platforms
Lukas Werling 2018-01-05 22:05:39 +01:00
parent 66adf0f72c
commit da63092ee1
1 changed files with 2 additions and 2 deletions

View File

@ -20,8 +20,8 @@ func FxIntGrowthTimer(object obj, effect, ...)
// Yield 1-2 extra wood
func Split2Components(...)
{
CreateObject(Wood);
if (GetCon() > 25) CreateObject(Wood);
CreateContents(Wood);
if (GetCon() > 25) CreateContents(Wood);
return inherited(...);
}