diff --git a/BauSystem_Main/src/de/steamwar/bausystem/region/flags/flagvalues/DamageMode.java b/BauSystem_Main/src/de/steamwar/bausystem/region/flags/flagvalues/DamageMode.java
deleted file mode 100644
index 9e60ea56..00000000
--- a/BauSystem_Main/src/de/steamwar/bausystem/region/flags/flagvalues/DamageMode.java
+++ /dev/null
@@ -1,58 +0,0 @@
-/*
- * This file is a part of the SteamWar software.
- *
- * Copyright (C) 2021 SteamWar.de-Serverteam
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see .
- */
-
-package de.steamwar.bausystem.region.flags.flagvalues;
-
-import de.steamwar.bausystem.config.ColorConfig;
-import de.steamwar.bausystem.region.flags.Flag;
-import lombok.AllArgsConstructor;
-import lombok.Getter;
-
-@Getter
-@AllArgsConstructor
-public enum DamageMode implements Flag.Value {
-
- ALLOW(ColorConfig.DISABLE + "an"),
- DENY(ColorConfig.ENABLE + "aus");
-
- private static DamageMode[] values;
- private final String chatValue;
-
- @Override
- public DamageMode[] getValues() {
- if (DamageMode.values == null) {
- DamageMode.values = DamageMode.values(); //NOSONAR
- }
- return DamageMode.values;
- }
-
- @Override
- public DamageMode getValue() {
- return this;
- }
-
- @Override
- public DamageMode getValueOf(final String name) {
- try {
- return DamageMode.valueOf(name);
- } catch (IllegalArgumentException e) {
- return DamageMode.ALLOW;
- }
- }
-}
\ No newline at end of file