-
-
Notifications
You must be signed in to change notification settings - Fork 376
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
4 changed files
with
98 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
59 changes: 59 additions & 0 deletions
59
src/main/java/ch/njol/skript/expressions/ExprWorldEnvironment.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
/** | ||
* This file is part of Skript. | ||
* | ||
* Skript is free software: you can redistribute it and/or modify | ||
* 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. | ||
* | ||
* Skript 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 Skript. If not, see <http://www.gnu.org/licenses/>. | ||
* | ||
* Copyright Peter Güttinger, SkriptLang team and contributors | ||
*/ | ||
package ch.njol.skript.expressions; | ||
|
||
import ch.njol.skript.doc.Description; | ||
import ch.njol.skript.doc.Examples; | ||
import ch.njol.skript.doc.Name; | ||
import ch.njol.skript.doc.Since; | ||
import ch.njol.skript.expressions.base.SimplePropertyExpression; | ||
import org.bukkit.World; | ||
import org.bukkit.World.Environment; | ||
import org.eclipse.jdt.annotation.Nullable; | ||
|
||
@Name("World Environment") | ||
@Description("The environment of a world") | ||
@Examples({ | ||
"if environment of player's world is nether:", | ||
"\tapply fire resistance to player for 10 minutes" | ||
}) | ||
@Since("INSERT VERSION") | ||
public class ExprWorldEnvironment extends SimplePropertyExpression<World, Environment> { | ||
|
||
static { | ||
register(ExprWorldEnvironment.class, Environment.class, "[world] environment", "worlds"); | ||
} | ||
|
||
@Override | ||
@Nullable | ||
public Environment convert(World world) { | ||
return world.getEnvironment(); | ||
} | ||
|
||
@Override | ||
public Class<? extends Environment> getReturnType() { | ||
return Environment.class; | ||
} | ||
|
||
@Override | ||
protected String getPropertyName() { | ||
return "environment"; | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 5 additions & 0 deletions
5
src/test/skript/tests/syntaxes/expressions/ExprWorldEnvironment.sk
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
test "world environment": | ||
assert environment of world "world" is normal with "main overworld was not environment ""normal""" | ||
assert environment of world "world_the_end" is the end with "world_the_end was not environment ""the end""" | ||
set {_environment} to environment of world "world" | ||
assert {_environment} is overworld with "environment of world didn't compare with a variable" |