commit
f773142448
2 changed files with 5 additions and 4 deletions
|
|
@ -4,6 +4,7 @@ This is the rolling changelog for TShock for Terraria. Use past tense when addin
|
|||
|
||||
## Upcoming changes
|
||||
|
||||
* Fixed `/worldmode` command to correctly target world mode. (@Ristellise)
|
||||
* Fixed NPC buff anticheat issue conflicting with Terraria gameplay changes (whips). (@Patrikkk)
|
||||
* Renamed `/bloodmoon` to `/tbloodmoon` because of conflict with Terraria reserved words. (@hakusaro)
|
||||
|
||||
|
|
|
|||
|
|
@ -2145,10 +2145,10 @@ namespace TShockAPI
|
|||
|
||||
static Dictionary<string, int> _worldModes = new Dictionary<string, int>
|
||||
{
|
||||
{ "normal", 1 },
|
||||
{ "expert", 2 },
|
||||
{ "master", 3 },
|
||||
{ "creative", 4 },
|
||||
{ "normal", 0 },
|
||||
{ "expert", 1 },
|
||||
{ "master", 2 },
|
||||
{ "creative", 3 },
|
||||
};
|
||||
|
||||
private static void ChangeWorldMode(CommandArgs args)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue