Fix crash reaction and add more translation key (#1850)

This commit is contained in:
HCR-750F
2023-07-27 00:26:09 +08:00
committed by GitHub
parent 69d167e451
commit d590313e4e
37 changed files with 81 additions and 74 deletions

View File

@ -7,9 +7,6 @@ namespace big
class reaction
{
protected:
void process_common(player_ptr player);
public:
bool announce_in_chat = false;
bool notify = true;
@ -27,5 +24,6 @@ namespace big
reaction(const char* event_name, const char* notify_message, const char* announce_message);
virtual void process(player_ptr player);
virtual void process_common(player_ptr player);
};
}