Changeset 461 for binary-improvements
- Timestamp:
- Aug 14, 2023, 9:10:48 PM (15 months ago)
- Location:
- binary-improvements
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
binary-improvements/MapRendering/ModInfo.xml
r456 r461 5 5 <Description value="Render the game map to image map tiles as it is uncovered" /> 6 6 <Author value="Christian 'Alloc' Illy" /> 7 <Version value="4 5" />7 <Version value="46" /> 8 8 <Website value="https://7dtd.illy.bz" /> 9 9 </ModInfo> -
binary-improvements/bin/Mods/Allocs_WebAndMapRendering/ModInfo.xml
r456 r461 5 5 <Description value="Render the game map to image map tiles as it is uncovered" /> 6 6 <Author value="Christian 'Alloc' Illy" /> 7 <Version value="4 5" />7 <Version value="46" /> 8 8 <Website value="https://7dtd.illy.bz" /> 9 9 </ModInfo> -
binary-improvements/webserver_legacy/js/map.js
r366 r461 54 54 // player icon 55 55 var playerIcon = L.icon({ 56 iconUrl: '/ static/leaflet/images/marker-survivor.png',57 iconRetinaUrl: '/ static/leaflet/images/marker-survivor-2x.png',56 iconUrl: '/legacymap/leaflet/images/marker-survivor.png', 57 iconRetinaUrl: '/legacymap/leaflet/images/marker-survivor-2x.png', 58 58 iconSize: [25, 48], 59 59 iconAnchor: [12, 24], … … 63 63 // hostile icon 64 64 var hostileIcon = L.icon({ 65 iconUrl: '/ static/leaflet/images/marker-zombie.png',66 iconRetinaUrl: '/ static/leaflet/images/marker-zombie-2x.png',65 iconUrl: '/legacymap/leaflet/images/marker-zombie.png', 66 iconRetinaUrl: '/legacymap/leaflet/images/marker-zombie-2x.png', 67 67 iconSize: [25, 33], 68 68 iconAnchor: [12, 16], … … 72 72 // animal icon 73 73 var animalIcon = L.icon({ 74 iconUrl: '/ static/leaflet/images/marker-animal.png',75 iconRetinaUrl: '/ static/leaflet/images/marker-animal-2x.png',74 iconUrl: '/legacymap/leaflet/images/marker-animal.png', 75 iconRetinaUrl: '/legacymap/leaflet/images/marker-animal-2x.png', 76 76 iconSize: [25, 26], 77 77 iconAnchor: [12, 13],
Note:
See TracChangeset
for help on using the changeset viewer.