Changeset 8471a7fd3eda72a9e55246f1921f8f9928450c8d
- Timestamp:
- 01/14/07 13:15:19
(2 years ago)
- Author:
- Christopher Jung <bktheg@web.de>
- git-committer:
- Christopher Jung <bktheg@web.de> 1168776919 +0100
- git-parent:
[06cf3906ea877c8c463867c7197d617c40498661]
- git-author:
- Christopher Jung <bktheg@web.de> 1168776919 +0100
- Message:
Ein paar getShipType(...)-Aufrufe gefixt
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rf3b5be0 |
r8471a7f |
|
| 172 | 172 | |
|---|
| 173 | 173 | private void echoSectorShipData( SQLResultRow aship, String relation ) throws UnsupportedEncodingException { |
|---|
| 174 | | SQLResultRow stype = Ships.getShipType(aship, true); |
|---|
| | 174 | SQLResultRow stype = Ships.getShipType(aship); |
|---|
| 175 | 175 | |
|---|
| 176 | 176 | StringBuffer echo = getContext().getResponse().getContent(); |
|---|
| reb54daa |
r8471a7f |
|
| 918 | 918 | battle.logenemy("\n"+aeShip.getString("name")+" ("+aeShip.getInt("id")+"):\n"); |
|---|
| 919 | 919 | |
|---|
| 920 | | SQLResultRow aeShipType = Ships.getShipType(aeShip, true); |
|---|
| | 920 | SQLResultRow aeShipType = Ships.getShipType(aeShip); |
|---|
| 921 | 921 | |
|---|
| 922 | 922 | int[] tmpsubdmgs = null; |
|---|
| … | … | |
| 1122 | 1122 | } |
|---|
| 1123 | 1123 | |
|---|
| 1124 | | SQLResultRow enemyShipType = Ships.getShipType(this.enemyShip, true); |
|---|
| | 1124 | SQLResultRow enemyShipType = Ships.getShipType(this.enemyShip); |
|---|
| 1125 | 1125 | |
|---|
| 1126 | 1126 | /* |
|---|
| r88b8a94 |
r8471a7f |
|
| 78 | 78 | continue; |
|---|
| 79 | 79 | } |
|---|
| 80 | | SQLResultRow shiptype = Ships.getShipType(aship, true); |
|---|
| | 80 | SQLResultRow shiptype = Ships.getShipType(aship); |
|---|
| 81 | 81 | |
|---|
| 82 | 82 | if( shiptype.getInt("class") == ShipClasses.ZERSTOERER.ordinal() ) { |
|---|
| … | … | |
| 104 | 104 | continue; |
|---|
| 105 | 105 | } |
|---|
| 106 | | SQLResultRow shiptype = Ships.getShipType(aship, true); |
|---|
| | 106 | SQLResultRow shiptype = Ships.getShipType(aship); |
|---|
| 107 | 107 | |
|---|
| 108 | 108 | if( shiptype.getInt("size") > 3 ) { |
|---|
| rda13d7a |
r8471a7f |
|
| 1663 | 1663 | // Kann man durch die Jumpnode (mit Waffen) fliegen |
|---|
| 1664 | 1664 | if( node.getBoolean("wpnblock") && !user.hasFlag(User.FLAG_MILITARY_JUMPS) ) { |
|---|
| 1665 | | SQLResultRow shiptype = getShipType(aship.getRow(), true); |
|---|
| | 1665 | SQLResultRow shiptype = getShipType(aship.getRow()); |
|---|
| 1666 | 1666 | |
|---|
| 1667 | 1667 | //Schiff Ueberprfen |
|---|