*Fixed incorrect commands - by Zor

--HG--
branch : trunk
This commit is contained in:
Blaymoira
2009-01-18 11:17:12 +01:00
parent 1edf80dec9
commit 1c61274f48
2 changed files with 7 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
delete from command where name in ('gobject tempadd', 'npc tempadd');
delete from command where name in ('gobject addtemp', 'npc addtemp');
insert into command (name, security, help) values
('gobject tempadd','2','Adds a temporary gameobject that is not saved to DB.'),
('npc tempadd','2','Adds temporary NPC, not saved to database.');
('gobject addtemp','2','Adds a temporary gameobject that is not saved to DB.'),
('npc addtemp','2','Adds temporary NPC, not saved to database.');

View File

@@ -0,0 +1,4 @@
delete from command where name in ('gobject tempadd','npc tempadd');
insert into command (name, security, help) values
('gobject addtemp','2','Adds a temporary gameobject that is not saved to DB.'),
('npc addtemp','2','Adds temporary NPC, not saved to database.');