aboutsummaryrefslogtreecommitdiff
path: root/src/net/brysonsteck/Resurrection/commands
diff options
context:
space:
mode:
authorBryson Steck <steck.bryson@gmail.com>2021-06-15 18:43:25 -0600
committerBryson Steck <steck.bryson@gmail.com>2021-06-15 18:43:25 -0600
commit8db9ccdf642ed81f585e900a843c411b973ce6da (patch)
tree54cac94efc109ec47a0111605dbbaae8c9d24fd0 /src/net/brysonsteck/Resurrection/commands
parent7d5f60d921cd35ce82a24e75ebfd79a3fd64bfed (diff)
downloadresurrection-8db9ccdf642ed81f585e900a843c411b973ce6da.tar
resurrection-8db9ccdf642ed81f585e900a843c411b973ce6da.tar.gz
resurrection-8db9ccdf642ed81f585e900a843c411b973ce6da.tar.bz2
starting to test timer
Diffstat (limited to 'src/net/brysonsteck/Resurrection/commands')
-rw-r--r--src/net/brysonsteck/Resurrection/commands/CommandResurrect.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/brysonsteck/Resurrection/commands/CommandResurrect.java b/src/net/brysonsteck/Resurrection/commands/CommandResurrect.java
index 8d5c4b5..f05de5d 100644
--- a/src/net/brysonsteck/Resurrection/commands/CommandResurrect.java
+++ b/src/net/brysonsteck/Resurrection/commands/CommandResurrect.java
@@ -44,7 +44,7 @@ public class CommandResurrect implements CommandExecutor {
System.out.println("That player does not exist! Failed to resurrect.");
return false;
}
- if (resurrectPlayer.getGameMode() == GameMode.ADVENTURE) {
+ if (resurrectPlayer.getGameMode() == GameMode.SPECTATOR) {
for (PotionEffect effect : resurrectPlayer.getActivePotionEffects())
resurrectPlayer.removePotionEffect(effect.getType());
resurrectPlayer.setGameMode(GameMode.SURVIVAL);