Changeset 78dcd114b21e3b5f58ac882562cba1f3d7c37da0

Show
Ignore:
Timestamp:
05/01/07 16:26:35 (2 years ago)
Author:
Christopher Jung <bktheg@web.de>
git-committer:
Christopher Jung <bktheg@web.de> 1178029595 +0200
git-parent:

[9d43cc4c7b7606b5ffbd493f2f364027745c1727]

git-author:
Christopher Jung <bktheg@web.de> 1178029595 +0200
Message:

Aufruf von getShipType gefixt

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • src/net/driftingsouls/ds2/server/ships/Ships.java

    r2c41adc r78dcd11  
    12951295                         */ 
    12961296                         
    1297                         node = db.first("SELECT t1.name,t1.x,t1.y,t1.system,t1.jumptarget,t1.owner,t2.ally,t1.type FROM ships t1 JOIN users t2 ON t1.owner=t2.id WHERE t1.id>0 AND t1.id=",nodeId); 
     1297                        node = db.first("SELECT t1.id,t1.name,t1.x,t1.y,t1.system,t1.jumptarget,t1.owner,t2.ally,t1.type,t1.status FROM ships t1 JOIN users t2 ON t1.owner=t2.id WHERE t1.id>0 AND t1.id=",nodeId); 
    12981298                        if( node.isEmpty() ) { 
    12991299                                outputbuffer.append("Fehler: Der angegebene Sprungpunkt existiert nicht<br />\n"); 
     
    15531553                        nodetypename = "Knossosportal"; 
    15541554                         
    1555                         datan = db.first("SELECT t1.name,t1.x,t1.y,t1.system,t1.jumptarget,t1.owner,t2.ally,t1.type FROM ships t1 JOIN users t2 ON t1.owner=t2.id WHERE t1.id>0 AND t1.id=",nodeID); 
     1555                        datan = db.first("SELECT t1.id,t1.name,t1.x,t1.y,t1.system,t1.jumptarget,t1.owner,t2.ally,t1.type,t1.status FROM ships t1 JOIN users t2 ON t1.owner=t2.id WHERE t1.id>0 AND t1.id=",nodeID); 
    15561556                        if( datan.isEmpty() ) { 
    15571557                                outputbuffer.append("Fehler: Der angegebene Sprungpunkt existiert nicht<br />\n");