summaryrefslogtreecommitdiff
path: root/npc/items/restricted_item.txt
diff options
context:
space:
mode:
authorremoitnane <remoit(DOT)nane(AT)gmail(DOT)com>2010-08-14 12:10:48 -0700
committerChuck Miller <shadowmil@gmail.com>2010-08-15 13:56:16 -0400
commitc4430fb3b870ac2def588efe638abba1dbcdf3a9 (patch)
tree3daf4bb648f4748292b3382631492af6e81d814f /npc/items/restricted_item.txt
parent46bf43b3f428cb131d1494d7bbf55db2698be2fd (diff)
downloadserverdata-c4430fb3b870ac2def588efe638abba1dbcdf3a9.tar.gz
serverdata-c4430fb3b870ac2def588efe638abba1dbcdf3a9.tar.bz2
serverdata-c4430fb3b870ac2def588efe638abba1dbcdf3a9.tar.xz
serverdata-c4430fb3b870ac2def588efe638abba1dbcdf3a9.zip
Update scripts to reflect gmcommand's simplification
If you are using mainline TMW-eAthena, you will have to update your scripts as well. Signed-off-by: Chuck Miller <shadowmil@gmail.com>
Diffstat (limited to 'npc/items/restricted_item.txt')
-rw-r--r--npc/items/restricted_item.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/items/restricted_item.txt b/npc/items/restricted_item.txt
index 4ce1d096..7d8e96ab 100644
--- a/npc/items/restricted_item.txt
+++ b/npc/items/restricted_item.txt
@@ -12,7 +12,7 @@ function script RestrictedItem {
message strcharinfo(0), "This item repells you with extreme force. It does not seem to be meant for you.";
unequipbyid @slotId;
if (getgmlevel(0)) return;
- gmcommand strcharinfo(0) + " : @wgm Restricted item '" + @itemId + "' used by character '" + strcharinfo(0) + "'.";
- gmcommand strcharinfo(0) + " : @l Restricted item '" + @itemId + "' used by character '" + strcharinfo(0) + "'.";
+ gmcommand "@wgm Restricted item '" + @itemId + "' used by character '" + strcharinfo(0) + "'.";
+ gmcommand "@l Restricted item '" + @itemId + "' used by character '" + strcharinfo(0) + "'.";
end;
}