ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/maps/perl/commands.ext
(Generate patch)

Comparing deliantra/maps/perl/commands.ext (file contents):
Revision 1.10 by root, Fri Oct 6 15:29:23 2006 UTC vs.
Revision 1.11 by root, Wed Nov 8 00:54:11 2006 UTC

31 $ob->message ("You stop calling your " . $item->base_name . " with weird names."); 31 $ob->message ("You stop calling your " . $item->base_name . " with weird names.");
32 } 32 }
33 33
34 $ob->esrv_update_item (cf::UPD_NAME, $item); 34 $ob->esrv_update_item (cf::UPD_NAME, $item);
35 35
36 return 1; 36 1
37} 37}
38 38
39sub who_listing(;$) { 39sub who_listing(;$) {
40 my ($privileged) = @_; 40 my ($privileged) = @_;
41 41
72 72
73cf::register_command who => $cf::TICK, sub { 73cf::register_command who => $cf::TICK, sub {
74 my ($ob, $arg) = @_; 74 my ($ob, $arg) = @_;
75 75
76 $ob->reply (undef, (join "\n", who_listing $ob->flag (cf::FLAG_WIZ)), cf::NDI_UNIQUE | cf::NDI_DK_ORANGE); 76 $ob->reply (undef, (join "\n", who_listing $ob->flag (cf::FLAG_WIZ)), cf::NDI_UNIQUE | cf::NDI_DK_ORANGE);
77
78 1
77}; 79};
78 80
79cf::register_command rename => $cf::TICK, sub { 81cf::register_command rename => $cf::TICK, sub {
80 my ($ob, $arg) = @_; 82 my ($ob, $arg) = @_;
81 83
94 # does not unquote $1 or $3 96 # does not unquote $1 or $3
95 rename_to $ob, $2||$1, $4||$3; 97 rename_to $ob, $2||$1, $4||$3;
96 } else { 98 } else {
97 $ob->reply (undef, 'Syntax error. Rename usage: rename ["oldname"] to "newname"'); 99 $ob->reply (undef, 'Syntax error. Rename usage: rename ["oldname"] to "newname"');
98 } 100 }
101
102 1
99}; 103};
104

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines