changing variable to be less ambiguous

This commit is contained in:
k0rd 2014-06-12 13:33:42 -04:00
parent a1158cb2e7
commit e50f2dfd1e
2 changed files with 2 additions and 2 deletions

View file

@ -341,7 +341,7 @@ namespace TShockAPI
{ {
HelpText = "Kills hostile NPCs or NPCs of a certain type." HelpText = "Kills hostile NPCs or NPCs of a certain type."
}); });
add(new Command(Permissions.rename, RenameNPC, "renamenpc") add(new Command(Permissions.renamenpc, RenameNPC, "renamenpc")
{ {
HelpText = "Renames an NPC." HelpText = "Renames an NPC."
}); });

View file

@ -174,7 +174,7 @@ namespace TShockAPI
public static readonly string spawnboss = "tshock.npc.spawnboss"; public static readonly string spawnboss = "tshock.npc.spawnboss";
[Description("User can rename NPCs.")] [Description("User can rename NPCs.")]
public static readonly string rename = "tshock.npc.rename"; public static readonly string renamenpc = "tshock.npc.rename";
[Description("User can spawn npcs.")] [Description("User can spawn npcs.")]
public static readonly string spawnmob = "tshock.npc.spawnmob"; public static readonly string spawnmob = "tshock.npc.spawnmob";