Skip to content
This repository has been archived by the owner on Apr 27, 2024. It is now read-only.

Commit

Permalink
#6
Browse files Browse the repository at this point in the history
Not so perfectly.
  • Loading branch information
iceBear67 committed Aug 10, 2021
1 parent a1c1447 commit 0615d7c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/main/java/cc/sfclub/game/module/game/OysterGame.java
Expand Up @@ -44,6 +44,7 @@
@Builder(access = AccessLevel.PRIVATE)
public class OysterGame extends GameMechanic implements Flaggable<OysterGame> {
private final String name;

@Builder.Default
@Getter
private final GameScope scope = new AnywhereScope();
Expand Down
Expand Up @@ -38,4 +38,9 @@ public Location getWarp(String warpName) {
public void setWarp(String warpName, Location location) {

}

@Override
public boolean hasWarp(String warp) {
return false;
}
}
Expand Up @@ -30,4 +30,5 @@ public interface GameScope {

void setWarp(String warpName, Location location);

boolean hasWarp(String warp);
}

0 comments on commit 0615d7c

Please sign in to comment.