diff --git a/build.gradle.kts b/build.gradle.kts index f9e3948..5bd0c1e 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -15,7 +15,6 @@ plugins { group = "org.openbase" description = "PlanetSudo is a reactive multi agent simulation game. This package can be used to prototype the artificial intelligence for a new team." - repositories { mavenLocal() mavenCentral() diff --git a/src/main/kotlin/org/openbase/planetsudo/game/strategy/DefaultStrategy.kt b/src/main/kotlin/org/openbase/planetsudo/game/strategy/DefaultStrategy.kt index 88113dc..5b637e3 100644 --- a/src/main/kotlin/org/openbase/planetsudo/game/strategy/DefaultStrategy.kt +++ b/src/main/kotlin/org/openbase/planetsudo/game/strategy/DefaultStrategy.kt @@ -8,12 +8,12 @@ package org.openbase.planetsudo.game.strategy /*- * it under the terms of the GNU 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 General Public License for more details. - * + * * You should have received a copy of the GNU General Public * License along with this program. If not, see * . @@ -68,11 +68,11 @@ class DefaultStrategy(agent: AgentInterface) : AbstractStrategy(agent) { * oder "Just Go" swat ALPHA and FOXTROT inCase { true } then { agent.go()} */ override fun loadRules() { - //--------------------------------------------> - "Just Go" all inCase { true } then { agent.go()} - //--------------------------------------------> + // --------------------------------------------> + "Just Go" all inCase { true } then { agent.go() } + // --------------------------------------------> // Füge hier die Regel mit der nächst höheren Priorität ein. <---- !!! HIER STARTEN !!! - //--------------------------------------------> + // --------------------------------------------> } /** diff --git a/src/main/kotlin/org/openbase/planetsudo/main/PlanetSudo.kt b/src/main/kotlin/org/openbase/planetsudo/main/PlanetSudo.kt index 6f191ca..bc50d83 100644 --- a/src/main/kotlin/org/openbase/planetsudo/main/PlanetSudo.kt +++ b/src/main/kotlin/org/openbase/planetsudo/main/PlanetSudo.kt @@ -8,19 +8,18 @@ package org.openbase.planetsudo.main /*- * it under the terms of the GNU 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 General Public License for more details. - * + * * You should have received a copy of the GNU General Public * License along with this program. If not, see * . * #L% */ - /** * * @author Divine Threepwood