Files
sfall/sfall/Modules/BugFixes.h
T
NovaRain 3934a804f4 Added new Drugs module and DrugsFile option (from Mr.Stalin)
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.
2019-03-05 12:36:38 +08:00

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();
}