Changeset 2c41adc93b7fd9b2399cdd4ae6b8ae6cfb82cbf0
- Timestamp:
- 05/01/07 11:40:31
(2 years ago)
- Author:
- Christopher Jung <bktheg@web.de>
- git-committer:
- Christopher Jung <bktheg@web.de> 1178012431 +0200
- git-parent:
[fbb4dbaf45035fe41320c44d9a5950eefeb1e34b]
- git-author:
- Christopher Jung <bktheg@web.de> 1178012431 +0200
- Message:
Quest-Lock Check bei Flottenspruengen gefixt
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r3eb1944 |
r2c41adc |
|
| 1352 | 1352 | } |
|---|
| 1353 | 1353 | |
|---|
| 1354 | | if( aship.getString("lock") == null || aship.getString("lock").length() == 0 ) { |
|---|
| | 1354 | if( aship.getString("lock") != null && aship.getString("lock").length() > 0 ) { |
|---|
| 1355 | 1355 | outputbuffer.append("<span style=\"color:red\">Die "+aship.getString("name")+" ("+aship.getInt("id")+") ist an ein Quest gebunden</span><br />\n"); |
|---|
| 1356 | 1356 | error = true; |
|---|