Fixed SetDungeon permission. Closes #1263
This commit is contained in:
parent
9e84063fbb
commit
2045ff511c
2 changed files with 3 additions and 1 deletions
|
|
@ -4,6 +4,8 @@ This is the rolling changelog for TShock for Terraria. Use past tense when addin
|
||||||
|
|
||||||
## Upcoming Changes
|
## Upcoming Changes
|
||||||
|
|
||||||
|
* The setdungeon command correctly uses tshock.world.setdungeon as its permission (@OnsenManju)
|
||||||
|
|
||||||
## TShock 4.3.17
|
## TShock 4.3.17
|
||||||
|
|
||||||
* Compatibility with Terraria 1.3.2.1
|
* Compatibility with Terraria 1.3.2.1
|
||||||
|
|
|
||||||
|
|
@ -512,7 +512,7 @@ namespace TShockAPI
|
||||||
AllowServer = false,
|
AllowServer = false,
|
||||||
HelpText = "Sets the world's spawn point to your location."
|
HelpText = "Sets the world's spawn point to your location."
|
||||||
});
|
});
|
||||||
add(new Command(Permissions.worldspawn, SetDungeon, "setdungeon")
|
add(new Command(Permissions.dungeonposition, SetDungeon, "setdungeon")
|
||||||
{
|
{
|
||||||
AllowServer = false,
|
AllowServer = false,
|
||||||
HelpText = "Sets the dungeon's position to your location."
|
HelpText = "Sets the dungeon's position to your location."
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue