mirror of
https://github.com/sfall-team/sfall.git
synced 2026-07-27 16:52:34 -07:00
Fixed a bug in the party control module with the 'addict' notification box not getting hidden after the addiction ends. Removed DrugsSaveFix option, now the list of active drug pids will be saved to sfalldb.sav.
22 lines
302 B
C++
22 lines
302 B
C++
#pragma once
|
|
|
|
#include "Module.h"
|
|
|
|
namespace sfall
|
|
{
|
|
|
|
class BugFixes : public Module {
|
|
public:
|
|
const char* name() { return "BugFixes"; }
|
|
void init();
|
|
|
|
static void DrugsSaveFix(HANDLE file);
|
|
static bool DrugsLoadFix(HANDLE file);
|
|
};
|
|
|
|
extern int tagSkill4LevelBase;
|
|
|
|
extern void ResetBodyState();
|
|
|
|
}
|