ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/server/c_move.C
(Generate patch)

Comparing deliantra/server/server/c_move.C (file contents):
Revision 1.19 by root, Mon Apr 5 03:22:26 2010 UTC vs.
Revision 1.21 by root, Sat Apr 23 04:56:55 2011 UTC

1/* 1/*
2 * This file is part of Deliantra, the Roguelike Realtime MMORPG. 2 * This file is part of Deliantra, the Roguelike Realtime MMORPG.
3 * 3 *
4 * Copyright (©) 2005,2006,2007,2008,2009,2010 Marc Alexander Lehmann / Robin Redeker / the Deliantra team 4 * Copyright (©) 2005,2006,2007,2008,2009,2010,2011 Marc Alexander Lehmann / Robin Redeker / the Deliantra team
5 * Copyright (©) 2002 Mark Wedel & Crossfire Development Team 5 * Copyright (©) 2002 Mark Wedel & Crossfire Development Team
6 * Copyright (©) 1992 Frank Tore Johansen 6 * Copyright (©) 1992 Frank Tore Johansen
7 * 7 *
8 * Deliantra is free software: you can redistribute it and/or modify it under 8 * Deliantra is free software: you can redistribute it and/or modify it under
9 * the terms of the Affero GNU General Public License as published by the 9 * the terms of the Affero GNU General Public License as published by the
116 { 116 {
117 new_draw_info (NDI_UNIQUE, 0, op, "Can't run into a non adjacent square."); 117 new_draw_info (NDI_UNIQUE, 0, op, "Can't run into a non adjacent square.");
118 return 0; 118 return 0;
119 } 119 }
120 120
121 op->direction = dir;
121 op->contr->run_on = 1; 122 op->contr->run_on = 1;
122 return move_player (op, dir); 123
124 return 1;
123} 125}
124 126
125int 127int
126command_run_stop (object *op, char *params) 128command_run_stop (object *op, char *params)
127{ 129{
138 { 140 {
139 new_draw_info (NDI_UNIQUE, 0, op, "Can't fire to a non adjacent square."); 141 new_draw_info (NDI_UNIQUE, 0, op, "Can't fire to a non adjacent square.");
140 return 0; 142 return 0;
141 }; 143 };
142 144
145 op->direction = dir;
143 op->contr->fire_on = 1; 146 op->contr->fire_on = 1;
144 return move_player (op, dir); 147
148 return 1;
145} 149}
146 150
147int 151int
148command_fire_stop (object *op, char *params) 152command_fire_stop (object *op, char *params)
149{ 153{

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines