August 6th Patch Update
Accumulated DLL source code changes since June 22nd patch
This commit is contained in:
parent
93a1af2eff
commit
ae72fce5dd
76 changed files with 1071 additions and 210 deletions
|
@ -168,9 +168,9 @@ bool SuperClass::Enable(bool onetime, bool player, bool quiet)
|
|||
* HISTORY: *
|
||||
* 07/28/1995 JLB : Created. *
|
||||
*=============================================================================================*/
|
||||
bool SuperClass::Remove(void)
|
||||
bool SuperClass::Remove(bool forced)
|
||||
{
|
||||
if (IsPresent && !IsOneTime) {
|
||||
if (IsPresent && (!IsOneTime || forced)) {
|
||||
IsReady = false;
|
||||
IsPresent = false;
|
||||
return(true);
|
||||
|
|
Reference in a new issue