diff options
Diffstat (limited to 'src/rollback.h')
-rw-r--r-- | src/rollback.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/rollback.h b/src/rollback.h index b5428c451..59db122e3 100644 --- a/src/rollback.h +++ b/src/rollback.h @@ -33,7 +33,9 @@ public: // IRollbackReportManager virtual void reportAction(const RollbackAction &action) = 0; virtual std::string getActor() = 0; - virtual void setActor(const std::string &actor) = 0; + virtual bool isActorGuess() = 0; + virtual void setActor(const std::string &actor, bool is_guess) = 0; + virtual std::string getSuspect(v3s16 p, int max_time) = 0; virtual ~IRollbackManager(){} virtual void flush() = 0; |