Changeset 46ed2aea2546b304b58a5ecc553aa806ac5606ba

Show
Ignore:
Timestamp:
02/25/07 10:02:20 (2 years ago)
Author:
Christopher Jung <bktheg@web.de>
git-committer:
Christopher Jung <bktheg@web.de> 1172394140 +0100
git-parent:

[ea008dc82922d0e130f0e0f901aba182b434bdce]

git-author:
Christopher Jung <bktheg@web.de> 1172394140 +0100
Message:

setAutoGTUActs eingebaut

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • src/net/driftingsouls/ds2/server/bases/Base.java

    r901f24a r46ed2ae  
    196196                } 
    197197                else { 
    198                         autogtuacts = (List<AutoGTUAction>)value
     198                        throw new RuntimeException("Bitte setAutoGtuActs() benutzen")
    199199                } 
    200200        } 
     
    315315        public List<AutoGTUAction> getAutoGTUActs() { 
    316316                return autogtuacts; 
     317        } 
     318         
     319        /** 
     320         * Setzt die Liste der automatischen GTU-Verkaufsaktionen 
     321         * @param list Die neue Liste 
     322         */ 
     323        public void setAutoGTUActs(List<AutoGTUAction> list) { 
     324                this.autogtuacts = list; 
    317325        } 
    318326