Fix respawn not resetting variables (#6453)

This commit is contained in:
Thomas Kooi 2018-07-20 00:09:08 +02:00 committed by GitHub
parent ac5fedff44
commit f7f89725fe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -276,7 +276,7 @@ class ACE_Settings {
displayName = CSTRING(MedicalSettings_spontaneousWakeUpChance_DisplayName);
description = CSTRING(MedicalSettings_spontaneousWakeUpChance_Description);
typeName = "SCALAR";
value = 0.05
value = 0.05;
sliderSettings[] = {0, 1, 0.05, 2};
};
};

View File

@ -13,7 +13,7 @@ class Extended_PreInit_EventHandlers {
class Extended_Init_EventHandlers {
class CAManBase {
class ADDON {
init = QUOTE(call FUNC(install));
init = QUOTE(call FUNC(initUnit));
};
};
};