From 862cfdae682f03d9e0f306f21c88e2bb8bfa1048 Mon Sep 17 00:00:00 2001 From: rsudev Date: Sun, 8 Sep 2013 22:02:41 +0200 Subject: Fixes #3234, Circles around physical stages of a cache Now only traditional, pae, and HQ have a physical stage at the header coordinates --- main/src/cgeo/geocaching/enumerations/CacheType.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'main/src') diff --git a/main/src/cgeo/geocaching/enumerations/CacheType.java b/main/src/cgeo/geocaching/enumerations/CacheType.java index c7a9130..31ec392 100644 --- a/main/src/cgeo/geocaching/enumerations/CacheType.java +++ b/main/src/cgeo/geocaching/enumerations/CacheType.java @@ -114,7 +114,7 @@ public enum CacheType { } public boolean applyDistanceRule() { - return !isVirtual() && !isEvent(); + return TRADITIONAL == this || PROJECT_APE == this || GCHQ == this; } public boolean isVirtual() { -- cgit v1.1