aboutsummaryrefslogtreecommitdiff
path: root/src/common/Utilities/Timer.h
diff options
context:
space:
mode:
authorTreeston <treeston.mmoc@gmail.com>2018-02-12 01:49:23 +0100
committerTreeston <treeston.mmoc@gmail.com>2018-02-12 01:50:36 +0100
commitd02f481d9ac8e1d1a7716368f609d53a5add0960 (patch)
treebc78b886082a828c3ad1f26f7a1e234af4a3a26b /src/common/Utilities/Timer.h
parent477878630e1bb2811d9be97189f0c819377b7840 (diff)
Core/Movement: Creatures' idle movement generator can no longer override player mover control.
Tagging #20310, partial fix.
Diffstat (limited to 'src/common/Utilities/Timer.h')
-rw-r--r--src/common/Utilities/Timer.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/Utilities/Timer.h b/src/common/Utilities/Timer.h
index 0c99e7afe0d..140a563f3ee 100644
--- a/src/common/Utilities/Timer.h
+++ b/src/common/Utilities/Timer.h
@@ -136,7 +136,7 @@ struct TimeTrackerSmall
{
public:
- TimeTrackerSmall(uint32 expiry = 0)
+ TimeTrackerSmall(int32 expiry = 0)
: i_expiryTime(expiry)
{
}
@@ -151,7 +151,7 @@ public:
return i_expiryTime <= 0;
}
- void Reset(uint32 interval)
+ void Reset(int32 interval)
{
i_expiryTime = interval;
}