diff options
Diffstat (limited to '')
-rw-r--r-- | src/Map.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/Map.cpp b/src/Map.cpp index 5db09adba..2fe901d8e 100644 --- a/src/Map.cpp +++ b/src/Map.cpp @@ -306,10 +306,8 @@ const cMapDecorator cMap::CreateDecorator(const cEntity * a_TrackedEntity) if (GetDimension() == dimNether) { - cFastRandom Random; - // TODO 2014-02-19 xdot: Refine - Rot = Random.NextInt(16); + Rot = GetRandomProvider().RandInt(15); } else { |